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

  :root {
    --dark:      #0f1929;
    --dark-mid:  #1a2b45;
    --green-cta: #00a651;
    --green-dk:  #007a3a;
    --orange:    #f07800;
    --orange-lt: #fff4e6;
    --gray-bg:   #f4f5f8;
    --gray-bdr:  #e2e4eb;
    --gray-txt:  #6b7280;
    --text:      #111827;
    --white:     #ffffff;
    --blue:      #2563eb;
    --radius:    12px;
    --shadow:    0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.13);
  }

  html { scroll-behavior: smooth; }
  html, body { overflow-x: clip; max-width: 100%; }
  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--gray-bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
  }

  /* ─── NAV ─── */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-bdr);
    padding: 0 2rem;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .logo {
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.3px;
  }
  .logo span { color: var(--green-cta); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: #4b5563; text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
  .nav-links a:hover { color: var(--dark); }
  .nav-cta {
    background: var(--green-cta);
    color: white;
    border: none;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background .15s;
  }
  .nav-cta:hover { background: var(--green-dk); }

  /* ─── HERO (lys redesign) ─── */
  .hero {
    background: #edf7f1;
    padding: 3.5rem 2rem 3rem;
    text-align: center;
  }
  .hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: #111827;
    line-height: 1.2;
    max-width: 640px;
    margin: 0 auto 0.75rem;
    letter-spacing: -0.5px;
  }
  .hero h1 em {
    color: var(--green-cta);
    font-style: normal;
  }
  .hero-sub {
    color: #4b5563;
    font-size: 17px;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-month { color: #9ca3af; font-size: 12px; margin-top: .85rem; }

  /* ─── SEARCH (ny stil) ─── */
  .search-wrap {
    max-width: 540px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--green-cta);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 4px 24px rgba(0,166,81,0.12);
  }
  .search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 0 12px;
    margin-bottom: .75rem;
    transition: border-color .15s;
  }
  .search-input-wrap:focus-within {
    border-color: var(--green-cta);
    background: white;
  }
  .search-icon { font-size: 16px; flex-shrink: 0; margin-right: 8px; opacity: .5; }
  .search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 13px 0;
    font-size: 16px; /* ≥16px forhindrer iOS Safari i at zoome ind */
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    outline: none;
  }
  .search-input::placeholder { color: #9ca3af; }

  /* ── ADRESSE-POPUP (modal – virker på alle skærmstørrelser) ── */
  .addr-popup-container {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
  }
  .addr-popup-container.open { display: block; }

  .addr-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    animation: addrFadeIn .15s ease;
  }
  @keyframes addrFadeIn  { from { opacity: 0; } to { opacity: 1; } }
  /* translateX(-50%) skal med i keyframes ellers hopper popup fra venstre */
  @keyframes addrSlideIn {
    from { transform: translateX(-50%) translateY(-16px); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0);     opacity: 1; }
  }
  @keyframes addrSlideInMobile {
    from { transform: translateY(-12px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
  }

  .addr-popup {
    position: fixed;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: 96vw;
    max-height: 82vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    animation: addrSlideIn .2s ease;
    overflow: hidden;
  }

  .addr-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #e5e7eb;
  }
  .addr-popup-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
  }
  .addr-popup-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    font-size: 22px;
    line-height: 1;
    transition: color .15s;
  }
  .addr-popup-close:hover { color: var(--dark); }

  .addr-popup-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 16px 0;
    background: #f4f5f8;
    border: 2px solid var(--green-cta);
    border-radius: 35px;
    padding: 0 16px;
  }
  .addr-popup-input-wrap .search-icon { font-size: 16px; opacity: .5; flex-shrink: 0; }
  .addr-popup-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 17px;   /* ≥16px = ingen iOS-zoom */
    font-family: 'DM Sans', sans-serif;
    padding: 14px 0;
    outline: none;
    color: var(--text);
  }
  .addr-popup-input::placeholder { color: #9ca3af; }

  .addr-popup-results {
    flex: 1;
    overflow-y: auto;
    padding: 8px 8px 12px;
    margin-top: 10px;
  }
  .addr-popup-hint {
    padding: 8px 12px 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-txt);
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .addr-popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .12s;
  }
  .addr-popup-item:hover { background: #f0faf5; }
  .addr-popup-item-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: #e6f4ec;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .addr-popup-item-main { font-size: 15px; font-weight: 700; color: var(--text); }
  .addr-popup-item-sub  { font-size: 13px; color: var(--gray-txt); margin-top: 1px; }

  /* Mobil: popup fylder hele skærmen – reset left/transform fra desktop */
  @media (max-width: 600px) {
    .addr-popup {
      top: 0;
      left: 0;                /* Ikke 50% fra desktop */
      transform: none;        /* Ikke translateX(-50%) fra desktop */
      border-radius: 0 0 20px 20px;
      max-height: 95vh;
      width: 100%;
      max-width: 100%;
      animation: addrSlideInMobile .18s ease-out;
    }
    .addr-popup-header { padding: 16px 16px 12px; }
  }
  .search-btn {
    display: block;
    width: 100%;
    background: var(--green-cta);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .15s;
    letter-spacing: .2px;
  }
  .search-btn:hover { background: var(--green-dk); }
  .search-trust {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: .75rem;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
  }

  /* ─── PROVIDER BAND ─── */
  .provider-band {
    background: white;
    border-top: 1px solid #e8eaef;
    border-bottom: 1px solid #e8eaef;
    padding: .9rem 0 .8rem;
    text-align: center;
  }
  .provider-band-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .75rem;
  }
  .provider-track-wrap {
    overflow: hidden;
    position: relative;
  }
  .provider-track-wrap::before,
  .provider-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
  }
  .provider-track-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
  .provider-track-wrap::after  { right: 0; background: linear-gradient(to left, white, transparent); }
  .provider-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: scroll-logos 51s linear infinite;
    /* Ingen padding – gap og translateX(-50%) giver et perfekt loop */
  }
  .provider-track:hover { animation-play-state: paused; }
  .provider-track img {
    height: 26px;
    width: auto;
    object-fit: contain;
    opacity: .6;
    filter: grayscale(20%);
    transition: opacity .2s, filter .2s;
    flex-shrink: 0;
  }
  .provider-track img:hover { opacity: 1; filter: none; }
  @keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .search-btn:hover { background: var(--green-dk); }
  .search-meta {
    display: flex;
    gap: 1.25rem;
    margin-top: .75rem;
    justify-content: center;
  }
  .search-meta span { font-size: 12px; color: var(--gray-txt); display: flex; align-items: center; gap: 4px; }
  .search-meta .ck { color: var(--green-cta); font-weight: 800; }

  /* ─── AUTOCOMPLETE ─── */
  .autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,.13);
    z-index: 200;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    padding: 6px;
  }
  .autocomplete-dropdown.open { display: block; }
  .ac-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .12s;
  }
  .ac-item:hover, .ac-item.active { background: #eff6ff; }
  .ac-item.active { background: #dbeafe; }
  .ac-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--gray-bg);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .ac-item:hover .ac-icon, .ac-item.active .ac-icon { background: #bfdbfe; }
  .ac-text { min-width: 0; }
  .ac-main { font-weight: 700; font-size: 14px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ac-sub  { font-size: 13px; color: var(--gray-txt); margin-top: 1px; }
  .ac-loading { padding: 16px 14px; font-size: 13px; color: var(--gray-txt); text-align: center; }

  /* ─── RESULTS HEADER STRIP ─── */
  .results-strip {
    background: #edf7f1;
    border-bottom: 2px solid #c3e8d4;
    padding: 0;
    display: none;
    /* scroll-margin-top sikrer at sticky nav aldrig dækker headeren */
    scroll-margin-top: 66px; /* nav 62px + 4px luft */
  }
  .results-strip.visible { display: block; }

  @media (max-width: 768px) {
    .results-strip { scroll-margin-top: 72px; } /* nav 56px + 16px luft */
  }

  /* Desktop: alle tre elementer på én linje */
  .rs-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: .9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: nowrap;
  }

  /* Overskrift */
  .rs-headline {
    flex: 1;
    color: var(--dark);
    font-size: clamp(.95rem, 1.8vw, 1.2rem);
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
  }
  .rs-headline strong { color: var(--green-dk); }

  /* Adresse som hvid pill (midten) */
  .rs-addr-small {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1.5px solid #b6dfc7;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    max-width: 340px;
  }
  .rs-pin { font-size: 14px; flex-shrink: 0; }
  .rs-addr-txt {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Søg igen (højre) */
  .rs-search-again-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-cta);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .13s;
    white-space: nowrap;
  }
  .rs-search-again-btn:hover { background: var(--green-dk); }

  /* Mobil: overskrift øverst (hel bredde), adresse + knap på linje 2 */
  @media (max-width: 600px) {
    .rs-bar {
      flex-wrap: wrap;
      gap: .5rem .5rem;
      padding: .75rem 1rem;
    }
    .rs-headline {
      flex: 1 1 100%;   /* hel bredde = øverst */
      font-size: .95rem;
      white-space: normal;
    }
    .rs-addr-small {
      flex: 1 1 0;      /* venstre på linje 2 */
      min-width: 0;
      max-width: calc(100% - 110px);
      font-size: 13px;
      padding: 5px 10px;
    }
    .rs-addr-txt { max-width: none; }
    .rs-search-again-btn {
      flex-shrink: 0;   /* højre på linje 2 */
      padding: 8px 14px;
      font-size: 13px;
    }
  }

  /* Gammel .address-box bevares for kompatibilitet (skjult) */
  .address-box { display: none; }

  /* Hvid fuld-bredde sektion bag filter + kort */
  .results-section {
    background: white;
    border-top: 1px solid var(--gray-bdr);
  }

  /* ─── MAIN RESULTS AREA ─── */
  .results-area {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
  }

  /* ─── CATEGORY HEADING ─── */
  .cat-heading {
    text-align: center;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text);
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .cat-heading .cat-icon { font-size: 1.3em; }
  .cat-section { margin-bottom: 3rem; }

  /* ─── CARD ─── */
  .card {
    background: var(--white);
    border: 2.5px solid #c2c6cf;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.09);
    margin-bottom: .9rem;
    overflow: hidden;
    position: relative;
    transition: box-shadow .2s, transform .15s;
  }
  .card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.14); transform: translateY(-1px); }

  /* ─── DUAL LAYOUT: desktop=gammelt, mobil=konkurrent ─── */
  /* Desktop: vis kun det gamle layout */
  .card-desktop-layout { display: block; }
  .card-mobile-layout  { display: none; }

  /* ─── NV-CARD: konkurrent-stilede kort ─── */
  .nv-card { border-radius: 18px; box-shadow: 0 2px 14px rgba(0,0,0,0.08); overflow: visible; position: relative; margin-bottom: 1.1rem; }
  .nv-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.13); transform: translateY(-2px); }

  /* Promo-tag øverst */
  .nv-promo-tag {
    display: inline-block;
    background: white;
    border: 1.5px solid #e2e6ec;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 12px; font-weight: 700;
    color: #374151;
    margin-bottom: -1px;
    position: relative; z-index: 1;
  }

  /* Logo-sektion */
  .nv-logo {
    padding: 1.4rem 1.5rem 1.1rem;
    text-align: center;
    border-bottom: 1px solid #f0f1f4;
  }
  .nv-logo .logo-img { max-width: 165px; max-height: 54px; width: auto; height: auto; object-fit: contain; }
  .nv-logo .logo-text-fallback { font-size: 1.3rem; font-weight: 800; color: var(--dark); }

  /* Type + Hastighed */
  .nv-info-row {
    display: grid; grid-template-columns: 1fr 1fr;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid #f0f1f4;
    gap: .5rem;
  }
  .nv-info-col--right { text-align: right; }
  .nv-lbl { font-size: 12px; color: #9ca3af; margin-bottom: 3px; font-weight: 500; }
  .nv-val { font-size: 15px; font-weight: 800; color: #111827; }

  /* Spar-badge */
  .nv-save-row {
    padding: .55rem 1.25rem;
    text-align: center;
    background: #fff8f8;
    border-bottom: 1px solid #f0f1f4;
  }
  .nv-save-badge {
    display: inline-block;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 4px 18px;
    font-size: 13px; font-weight: 600;
    color: #dc2626;
    background: white;
  }

  /* Prissektion */
  .nv-price-row {
    display: grid; grid-template-columns: 1fr 1fr;
    padding: .9rem 1.25rem 1rem;
    align-items: center;
    background: #fafafa;
    border-bottom: 1px solid #f0f1f4;
  }
  .nv-price-6mdr { font-size: 1.4rem; font-weight: 800; color: #111827; line-height: 1.1; }
  .nv-price-right { text-align: right; }
  .nv-price-main { font-size: 1.55rem; font-weight: 800; color: #111827; line-height: 1.1; }
  .nv-dash { font-size: 1.1rem; }
  .nv-per-md { font-size: .8rem; font-weight: 500; color: #6b7280; }
  .nv-price-campaign { font-size: 13px; font-weight: 700; color: #dc2626; margin-top: 3px; }

  /* Logo centreret */
  .nv-logo { display: flex; align-items: center; justify-content: center; }

  /* Type+hastighed – større fed skrift */
  .nv-val { font-size: 17px; font-weight: 800; color: #111827; }

  /* Prissektion – større priser */
  .nv-price-6mdr { font-size: 1.55rem; font-weight: 800; color: #111827; line-height: 1.1; }
  .nv-price-binding-val { font-size: 1.2rem; font-weight: 800; color: #374151; line-height: 1.1; }
  .nv-price-main { font-size: 1.75rem; font-weight: 800; color: #111827; line-height: 1.1; }

  /* Knapper */
  .nv-buttons {
    display: flex; align-items: center;
    gap: .9rem;
    padding: .9rem 1.25rem 1.1rem;
  }
  .nv-btn-details {
    background: none; border: none; padding: 0;
    font-size: 14px; font-weight: 600; color: #6b7280;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    text-decoration: underline; text-underline-offset: 3px;
    white-space: nowrap; flex-shrink: 0;
    transition: color .15s;
  }
  .nv-btn-details:hover { color: var(--dark); }
  .nv-btn-go {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    background: var(--green-cta); color: white;
    border: none; border-radius: 12px; padding: 15px 12px;
    font-size: 16px; font-weight: 800; font-family: 'DM Sans', sans-serif;
    text-decoration: none; transition: background .15s; cursor: pointer;
    text-align: center; letter-spacing: .2px;
  }
  .nv-btn-go:hover { background: var(--green-dk); }

  /* Tag badge (top-left corner) */
  .card-tag-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--dark);
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
  }
  .card-tag-badge.green  { background: var(--green-cta); }
  .card-tag-badge.blue   { background: #2563eb; }
  .card-tag-badge.amber  { background: var(--orange); }
  .card-tag-badge.teal   { background: #0d9488; }
  .card-tag-badge.purple { background: #7c3aed; }

  /* Card inner: 3-column grid – 10% kompakt */
  .card-inner {
    display: grid;
    grid-template-columns: 172px 1fr 245px;
    min-height: 160px;
  }

  /* LEFT: Logo column */
  .card-logo-col {
    background: var(--gray-bg);
    border-right: 1.5px solid var(--gray-bdr);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    gap: 10px;
  }
  .logo-box {
    width: 100%;
    max-width: 130px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 8px;
    background: white;
    border: 1.5px solid var(--gray-bdr);
    padding: 6px 10px;
  }
  .logo-img { max-width: 110px; max-height: 38px; width: auto; height: auto; object-fit: contain; display: block; }
  .logo-prov-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
  }
  .rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
  }
  .stars { color: #f59e0b; font-size: 11px; }
  .rating-num { font-weight: 700; }
  .rating-cnt { color: var(--gray-txt); }

  /* MIDDLE: Info column */
  .card-info-col {
    padding: 1.25rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  /* Product name (fra Adtraction campaign-felt) */
  .card-product-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-txt);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 2px;
  }

  /* Speed display */
  .speed-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .speed-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
  }
  .speed-icon {
    font-size: 1.6rem;
    color: var(--gray-txt);
    line-height: 1;
  }
  .speed-meta {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
  }
  .speed-mbit { font-size: 13px; font-weight: 600; color: var(--gray-txt); }

  /* Feature pills */
  .pills-row { display: flex; gap: 6px; flex-wrap: wrap; }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1.5px solid var(--gray-bdr);
    background: white;
    color: var(--text);
    white-space: nowrap;
  }
  .pill .pi { font-size: 14px; }
  .pill.ok { border-color: #d1fae5; background: #f0fdf4; color: #065f46; }
  .pill.ok .pi { color: var(--green-cta); font-style: normal; font-size: 13px; font-weight: 800; }
  .pill.tech { border-color: #dbeafe; background: #eff6ff; color: #1e40af; }

  /* RIGHT: Price column */
  .card-price-col {
    border-left: 1.5px solid var(--gray-bdr);
    padding: 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .price-old {
    font-size: 14px;
    color: var(--gray-txt);
    text-decoration: line-through;
    align-self: flex-start;
  }
  .spar-badge {
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 4px 10px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 2px;
  }
  /* TEST: tilbudstekst over prisen – rød, lille, ingen tag-boks */
  .price-offer-text {
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    align-self: flex-start;
    margin-bottom: 1px;
    line-height: 1.3;
  }
  .price-main {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    align-self: flex-start;
  }
  .price-main .price-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-txt);
  }
  .price-binding {
    font-size: 12px;
    color: var(--gray-txt);
    align-self: flex-start;
    margin-bottom: 2px;
  }
  .price-6mdr {
    font-size: 11px;
    color: var(--gray-txt);
    align-self: flex-start;
    margin-bottom: 8px;
    font-style: italic;
  }
  .btn-go {
    display: block;
    width: 100%;
    background: var(--green-cta);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background .15s;
    letter-spacing: .2px;
  }
  .btn-go:hover { background: var(--green-dk); }
  .btn-read {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-txt);
    text-decoration: none;
    padding: 4px 0;
    transition: color .15s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-read:hover { color: var(--text); }

  /* Campaign bar */
  .card-campaign {
    background: var(--dark);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 9px 1.25rem;
    text-align: center;
  }

  /* No-coverage message */
  .no-coverage {
    background: white;
    border: 1.5px solid var(--gray-bdr);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .no-coverage .emoji { font-size: 2rem; margin-bottom: .5rem; }
  .no-coverage h3 { font-size: 16px; font-weight: 700; margin-bottom: .5rem; }
  .no-coverage p { font-size: 14px; color: var(--gray-txt); max-width: 420px; margin: 0 auto; line-height: 1.6; }

  /* Loading */
  @keyframes spin { to { transform: rotate(360deg); } }
  .spinner { width:40px;height:40px;border:3px solid var(--gray-bdr);border-top-color:var(--green-cta);border-radius:50%;animation:spin .8s linear infinite;margin:0 auto 1rem; }
  .loading-box { background:white;border-radius:var(--radius);border:1.5px solid var(--gray-bdr);padding:3rem;text-align:center; }

  /* ─── TRUST ─── */
  .trust-section {
    background: white;
    border-top: 1px solid var(--gray-bdr);
    border-bottom: 1px solid var(--gray-bdr);
    padding: 3rem 2rem;
    text-align: center;
  }
  .trust-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.9rem;
    color: var(--text);
    margin-bottom: .5rem;
  }
  .trust-section .sub { color: var(--gray-txt); margin-bottom: 2rem; font-size: 15px; }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.5rem;
    max-width: 880px;
    margin: 0 auto;
  }
  .trust-item .t-icon { font-size: 30px; margin-bottom: .6rem; }
  .trust-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .trust-item p { font-size: 13px; color: var(--gray-txt); }

  /* ─── FAQ ─── */
  .faq-section { max-width: 760px; margin: 3rem auto; padding: 0 1.5rem; }
  .faq-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.9rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .faq-item { border: 1.5px solid var(--gray-bdr); border-radius: 10px; margin-bottom: 8px; overflow: hidden; background: white; }
  .faq-q { padding: .9rem 1.25rem; font-weight: 700; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
  .faq-q:hover { background: var(--gray-bg); }
  .faq-arrow { color: var(--gray-txt); transition: transform .2s; }
  .faq-a { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; font-size: 14px; color: var(--gray-txt); line-height: 1.7; }
  .faq-a.open { max-height: 300px; padding: 0 1.25rem 1rem; }
  .faq-arrow.open { transform: rotate(180deg); }

  /* ─── FOOTER ─── */
  footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 3rem 2rem 2rem; }
  .footer-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem; margin-bottom: 2rem;
  }
  .footer-brand .logo { display: block; margin-bottom: .75rem; color: white; }
  .footer-brand .logo span { color: #67e8a0; }
  .footer-brand p { font-size: 13px; line-height: 1.6; }
  .footer-col h4 { color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .75rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 13px; transition: color .15s; }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem;
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1000px; margin: 0 auto; font-size: 12px; flex-wrap: wrap; gap: .5rem;
  }
  .affil-note { background: rgba(255,255,255,.07); border-radius: 6px; padding: 8px 14px; font-size: 12px; max-width: 480px; line-height: 1.5; }

  /* ─── STATS BAR ─── */
  .stats-bar { display: none; }
  .stat-item {
    text-align: center;
    padding: .4rem 2.2rem;
    border-right: 1px solid var(--gray-bdr);
    display: flex;
    align-items: center;
    gap: .75rem;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    white-space: nowrap;
  }
  .stat-lbl {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-txt);
    white-space: nowrap;
  }

  /* Speed direction labels */
  .speed-dir { font-size: 11px; color: var(--gray-txt); }
  .speed-divider { font-size: 1.4rem; color: var(--gray-bdr); font-weight: 300; margin: 0 4px; align-self: flex-start; padding-top: 2px; }
  .speed-ul { font-size: 1.7rem !important; color: var(--gray-txt); }

  /* ─── HOMEPAGE OFFERS ─── */
  .home-offers {
    background: var(--white);
    border-top: 1px solid var(--gray-bdr);
  }
  .home-offers-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: .85rem 1.5rem;
  }
  .home-offers-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .home-offers-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-txt);
    margin-bottom: .5rem;
  }
  .home-offers-header p {
    font-size: 14px;
    color: var(--gray-txt);
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto;
  }
  .home-offers-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 13px;
    color: var(--gray-txt);
    padding: .75rem;
    background: var(--gray-bg);
    border-radius: 8px;
  }
  .home-offers-note strong { color: var(--text); }

  /* ─── FILTER + SORT BAR ─── */
  .filter-sort-bar {
    background: #fff;
    border-bottom: 1.5px solid var(--gray-bdr);
    padding: 0;
    margin-bottom: 1.5rem;
  }
  .filter-sort-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: .85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .fsb-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
  }
  .fsb-selects {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .fsb-select {
    appearance: auto;
    border: 1.5px solid var(--gray-bdr);
    border-radius: 8px;
    padding: 8px 14px 8px 12px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    cursor: pointer;
    outline: none;
    transition: border-color .15s;
  }
  .fsb-select:hover, .fsb-select:focus { border-color: #9ca3af; }
  /* Sort select: orange accent (matches reference) */
  .fsb-sort {
    border-color: var(--orange);
    color: var(--orange);
  }
  .fsb-sort:hover, .fsb-sort:focus { border-color: var(--orange); }

  /* Toggle + extra-filter wrapper: desktop = invisible/inline */
  .fsb-filter-toggle { display: none; }
  .fsb-extra-filters { display: contents; }

  /* ─── RESPONSIVE ─── */

  /* Tablet landscape / small desktop (≤ 960px) */
  @media (max-width: 960px) {
    .main-wrap { padding: 0 1.25rem; }
    .section-wrap { padding: 0 1.25rem; }
    .footer-grid { gap: 1.5rem; }
  }

  /* iPad portrait / tablet (≤ 820px) */
  @media (max-width: 820px) {
    /* Nav */
    nav { padding: 0 1.25rem; }

    /* Hero */
    .hero { padding: 2.5rem 1.25rem 3rem; }
    .hero h1 { font-size: clamp(2rem, 4vw, 2.6rem); }

    /* Search */
    .search-wrap { max-width: 100%; }

    /* Stats – 2×2 grid */
    .stats-bar { display: grid; grid-template-columns: 1fr 1fr; padding: .75rem 1.25rem; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--gray-bdr); padding: .75rem 1rem; justify-content: center; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) { border-bottom: 1px solid var(--gray-bdr); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-bdr); }

    /* Filter pills – scrollable row */
    .filter-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; padding-bottom: .25rem; }
    .filter-bar::-webkit-scrollbar { display: none; }

    /* Cards – collapse price col to bottom row */
    .card-inner { grid-template-columns: 130px 1fr; grid-template-rows: auto auto; }
    .card-price-col {
      grid-column: 1 / -1;
      border-left: none;
      border-top: 1.5px solid var(--gray-bdr);
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      padding: .9rem 1.25rem;
    }
    .price-main { font-size: 2rem; }
    .price-old, .spar-badge, .price-binding { align-self: auto; }
    .card-cta { padding: 10px 18px; font-size: 14px; }

    /* Sections */
    .section-wrap { padding: 0 1.25rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-brand { grid-column: 1 / -1; }
  }

  /* Large phone / small tablet (≤ 600px) */
  @media (max-width: 600px) {
    /* Nav */
    nav { padding: 0 1rem; height: 56px; }
    .nav-links { display: none; }
    .nav-cta { padding: 7px 14px; font-size: 13px; }

    /* Hero */
    .hero { padding: 2rem 1rem 2.5rem; }
    .hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); margin-bottom: .5rem; }
    .hero-sub { font-size: 14px; margin-bottom: 1.5rem; }

    /* Search – mobil */
    .search-wrap { padding: 1rem; border-radius: 14px; }
    .search-input-wrap { padding: 0 10px; margin-bottom: .65rem; }
    .search-input { padding: 12px 0; font-size: 16px; } /* ≥16px = ingen iOS zoom */
    .search-btn { padding: 14px; font-size: 16px; }
    .search-trust { gap: .75rem; font-size: 11px; flex-wrap: wrap; }
    /* Provider band – mobil */
    .provider-band { padding: .75rem 0 .7rem; }
    .provider-band-label { font-size: 11px; margin-bottom: .6rem; }

    /* Stats: skjult på mobil */
    .stats-bar { display: none; }

    /* ── MOBILE: skjul desktop-layout, vis mobil-layout ── */
    .card-desktop-layout { display: none !important; }
    .card-mobile-layout  { display: block; }

    /* ── MOBILE CARD: reference-inspireret layout ── */

    /* Mørk, tydelig ramme */
    .card {
      border: 2px solid #8e939f;
      border-radius: 16px;
      margin-bottom: .75rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.11);
    }

    /* Badge: skjult på mobil (kampagnepris vises i priskolonne) */
    .card-tag-badge { display: none; }

    /* Vertikal stak */
    .card-inner { display: flex; flex-direction: column; min-height: unset; }

    /* ── LOGO: stor og centreret øverst ── */
    .card-logo-col {
      border-right: none;
      border-bottom: 1.5px solid var(--gray-bdr);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.15rem 1.5rem .95rem;
      gap: 0;
      background: white;
    }
    .logo-box {
      width: 175px; max-width: 175px; height: 58px;
      border: none; background: transparent; padding: 0; box-shadow: none;
    }
    .logo-img { max-width: 160px; max-height: 50px; }
    .logo-prov-name { display: none; }

    /* ── INFO: vertikal stak der aldrig overflower ── */
    .card-info-col {
      display: flex;
      flex-direction: column;
      padding: .75rem 1rem .65rem;
      gap: .45rem;
      background: #f7f8fb;
      border-bottom: 1.5px solid var(--gray-bdr);
      min-width: 0;
      overflow: visible;
    }
    .card-product-name {
      font-size: 11px;
      color: var(--gray-txt);
      text-transform: uppercase;
      letter-spacing: .3px;
      margin-bottom: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Hastighed: centreret grå boks */
    .speed-row {
      background: white;
      border: 1.5px solid var(--gray-bdr);
      border-radius: 10px;
      padding: .45rem .75rem;
      justify-content: center;
      gap: 5px;
      flex-wrap: wrap;
      align-items: baseline;
      width: 100%;
      box-sizing: border-box;
    }
    .speed-num { font-size: 1.65rem; font-weight: 800; line-height: 1; color: var(--text); }
    .speed-ul  { font-size: 1.2rem !important; color: var(--gray-txt); }
    .speed-divider { font-size: 1.1rem; margin: 0 4px; color: #d1d5db; }
    .speed-mbit { font-size: 11px; font-weight: 600; color: var(--gray-txt); }
    .speed-dir  { display: none; }

    /* Pills: vandret, wrappende, centreret */
    .pills-row {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
    }
    .pill {
      flex: 0 0 auto;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      white-space: nowrap;
      line-height: 1.3;
    }
    .pill.ok   { background: #f0fdf4; border-color: #bbf7d0; color: #065f46; }
    .pill.tech { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
    .pill .pi  { font-size: 12px; margin-right: 3px; }

    /* ── PRISSEKTIONEN ── */
    .card-price-col {
      border-left: none;
      border-top: none;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: .25rem .5rem;
      padding: .85rem 1rem .9rem;
      align-items: center;
    }

    /* Alle tekstlinjer: fuld bredde */
    .price-offer-text {
      flex: 1 1 100%;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      color: #dc2626;
      margin-bottom: 0;
      align-self: auto;
    }
    .card-price-col .price-main {
      flex: 1 1 100%;
      text-align: center;
      font-size: 2.1rem !important;
      line-height: 1;
      align-self: auto;
    }
    .card-price-col .price-main .price-unit { font-size: .8rem; }
    .card-price-col .price-binding {
      flex: 1 1 100%;
      text-align: center;
      font-size: 10px;
      color: var(--gray-txt);
      margin-bottom: 0;
    }
    .card-price-col .price-6mdr {
      flex: 1 1 100%;
      text-align: center;
      font-size: 11px;
      font-style: italic;
      color: var(--gray-txt);
      margin-bottom: .2rem;
    }

    /* Knapper: side om side
       DOM-orden: btn-go, btn-read → order bytter dem visuelt */
    .btn-go {
      flex: 1;
      order: 2;
      font-size: 14px;
      padding: 12px 10px;
      border-radius: 10px;
      width: auto;
      letter-spacing: 0;
    }
    .btn-read {
      flex: 0 0 auto;
      order: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      padding: 12px 16px;
      border-radius: 10px;
      border: 1.5px solid #c9cdd6;
      background: white;
      color: var(--text);
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      width: auto;
    }
    .btn-read:hover { border-color: #9ca3af; color: var(--text); }

    /* Home offers header */
    .home-offers-header { padding: 1.5rem 1rem 1rem; }
    .home-offers-header h2 { font-size: 1.4rem; }

    /* Section headings */
    .section-wrap { padding: 2rem 1rem; }
    .section-wrap h2 { font-size: 1.3rem; }

    /* Filter pills */
    .filter-bar { padding: .75rem 1rem; gap: 6px; }
    .filter-btn { font-size: 13px; padding: 5px 12px; }

    /* Filter-sort bar – mobil redesign */
    .filter-sort-bar { padding: .5rem 1rem .55rem; margin-bottom: 1rem; }
    .filter-sort-inner { flex-direction: column; align-items: stretch; gap: .35rem; }
    .fsb-count { font-size: 12px; }
    .fsb-selects { flex-direction: column; gap: .4rem; }

    /* Sort: prominentfremhævet øverst */
    #fsSort { width: 100%; font-size: 14px; padding: 9px 12px; }

    /* "Filtrér ▾" knap – skjult på mobil */
    .fsb-filter-toggle {
      display: none !important;
    }
    .fsb-extra-filters { display: none !important; }
    .fsb-filter-toggle-HIDDEN {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      padding: 9px 12px;
      border: 1.5px solid var(--gray-bdr);
      border-radius: 8px;
      background: white;
      font-size: 13px;
      font-weight: 700;
      font-family: 'DM Sans', sans-serif;
      color: var(--gray-txt);
      cursor: pointer;
      transition: border-color .15s, color .15s;
    }
    .fsb-filter-toggle.active {
      border-color: var(--orange);
      color: var(--orange);
    }

    /* Ekstra filtre: skjult som standard, vist når .open */
    .fsb-extra-filters {
      display: none;
      flex-direction: column;
      gap: .4rem;
    }
    .fsb-extra-filters.open { display: flex; }
    .fsb-extra-filters .fsb-select { font-size: 13px; padding: 7px 10px; width: 100%; }

    /* Sort bar */
    .sort-bar { padding: 0 1rem .5rem; flex-wrap: wrap; gap: 8px; font-size: 13px; }

    /* Trust section */
    .trust-section { padding: 2rem 1rem; }
    .trust-section h2 { font-size: 1.4rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* FAQ */
    .faq-section { padding: 0 1rem; margin: 2rem auto; }
    .faq-section h2 { font-size: 1.4rem; }
    .faq-q { font-size: 13px; padding: .8rem 1rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-brand { grid-column: unset; }
    footer { padding: 2rem 1rem 1.5rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
    .affil-note { max-width: 100%; }
  }

  /* iPhone SE / very small (≤ 390px) */
  @media (max-width: 390px) {
    .hero h1 { font-size: 1.85rem; }
    .stat-num { font-size: 15px; }
    .price-main { font-size: 2rem; }
    .speed-num { font-size: 1.7rem; }
    .search-wrap { border-radius: 10px; padding: .85rem; }
    .logo-box { width: 130px; height: 60px; }
    .pill { font-size: 11px; padding: .5rem .35rem; }
  }

  /* ─── MODAL ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: auto; }
  .modal-box {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 680px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    transform: translateY(20px);
    transition: transform .2s;
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--gray-bg);
    border: none;
    border-radius: 50%;
    width: 34px; height: 34px;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-txt);
    transition: background .15s, color .15s;
    z-index: 10;
  }
  .modal-close:hover { background: var(--gray-bdr); color: var(--text); }

  /* Header */
  .modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem 1rem;
    border-bottom: 1.5px solid var(--gray-bdr);
  }
  .modal-logo-wrap {
    width: 70px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .modal-logo-wrap img { max-width: 66px; max-height: 38px; object-fit: contain; display: block; }
  .modal-prov-title { font-size: 17px; font-weight: 800; color: var(--text); }

  /* Two-column body */
  .modal-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .modal-left-col {
    padding: 1.25rem 1.5rem;
    border-right: 1.5px solid var(--gray-bdr);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }
  .modal-right-col {
    padding: 1.25rem 1.5rem;
  }
  .modal-section-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text);
    margin-bottom: .55rem;
  }
  .modal-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 4px;
  }
  .modal-feat-icon { font-size: 13px; flex-shrink: 0; width: 18px; padding-top: 1px; }

  /* Prisoversigt */
  .modal-pt-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .75rem;
  }
  .modal-pr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 5px 0;
    color: var(--text);
    border-bottom: 1px solid var(--gray-bdr);
  }
  .modal-pr:last-child { border-bottom: none; }
  .modal-pr.dim { color: var(--gray-txt); }
  .modal-pr.strong { font-weight: 700; }
  .modal-pr.sep-top { border-top: 2px solid var(--gray-bdr); margin-top: 4px; padding-top: 8px; }
  .modal-pr.red { color: #dc2626; font-weight: 700; }
  .modal-pr.green { color: #059669; font-weight: 700; }
  .modal-pr-val { font-weight: 600; white-space: nowrap; }

  /* Pligttekst */
  .modal-pligttekst {
    margin: 0 1.5rem;
    padding: 10px 14px;
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-radius: 10px;
    font-size: 11.5px;
    color: #92400e;
    line-height: 1.6;
  }
  .modal-pligttekst strong { font-weight: 700; display: block; margin-bottom: 3px; color: #78350f; font-size: 12px; }

  /* Bottom bar */
  .modal-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: #fafafa;
    border-top: 1.5px solid var(--gray-bdr);
    border-radius: 0 0 20px 20px;
    margin-top: .75rem;
  }
  .modal-price-big {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
  }
  .modal-price-big .pu { font-size: 1rem; font-weight: 600; color: var(--gray-txt); }
  .modal-price-promo {
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    margin-top: 3px;
  }
  .modal-cta {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
  }
  .modal-cta:hover { background: #d96b00; }

  @media (max-width: 600px) {
    .modal-box { border-radius: 16px; max-height: 95vh; }
    .modal-header { padding: 1rem 1.25rem; }
    .modal-two-col { grid-template-columns: 1fr; }
    .modal-left-col { border-right: none; border-bottom: 1.5px solid var(--gray-bdr); padding: 1rem 1.25rem; }
    .modal-right-col { padding: 1rem 1.25rem; }
    .modal-pligttekst { margin: 0 1rem; }
    .modal-bottom-bar { flex-direction: column; align-items: stretch; border-radius: 0 0 16px 16px; padding: 1rem 1.25rem; margin-top: .5rem; }
    .modal-cta { text-align: center; padding: 14px; }
    .modal-price-big { font-size: 1.8rem; }
  }

/* ─── GUIDE SECTION ─── */
.guide-section {
  background: var(--white);
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--gray-bdr);
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-sub { color: var(--gray-txt); margin: .5rem 0 2rem; font-size: 16px; }
.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.guide-step {
  background: var(--gray-bg);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--green-cta);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 1rem;
}
.guide-step h3 { font-size: 17px; font-weight: 700; margin-bottom: .6rem; color: var(--text); }
.guide-step p { font-size: 14px; color: var(--gray-txt); line-height: 1.6; }

/* ─── TECHNOLOGY SECTION ─── */
.tech-section {
  background: var(--gray-bg);
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--gray-bdr);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tech-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1.5px solid var(--gray-bdr);
}
.tech-icon { font-size: 2rem; margin-bottom: .75rem; }
.tech-card h3 { font-size: 18px; font-weight: 800; margin-bottom: .75rem; color: var(--text); }
.tech-card p { font-size: 14px; color: var(--gray-txt); line-height: 1.6; margin-bottom: 1rem; }
.tech-list { list-style: none; font-size: 13px; color: var(--text); display: flex; flex-direction: column; gap: 4px; }

/* ─── PROVIDER OVERVIEW ─── */
.provider-section {
  background: var(--white);
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--gray-bdr);
}
.provider-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pov-card {
  background: var(--gray-bg);
  border-radius: 14px;
  padding: 1.4rem;
  border: 1.5px solid var(--gray-bdr);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pov-logo { height: 32px; object-fit: contain; align-self: flex-start; max-width: 100px; }
.pov-card h3 { font-size: 15px; font-weight: 700; color: var(--text); }
.pov-card p { font-size: 13px; color: var(--gray-txt); line-height: 1.55; flex: 1; }
.pov-link { font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; }
.pov-link:hover { text-decoration: underline; }

/* ─── CITY SECTION ─── */
.city-section {
  background: var(--gray-bg);
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--gray-bdr);
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.city-link {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--gray-bdr);
  border-radius: 10px;
  padding: .9rem 1rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, color .15s;
}
.city-link:hover {
  border-color: var(--green-cta);
  color: var(--green-cta);
  box-shadow: 0 2px 8px rgba(0,166,81,.12);
}

/* ─── CONTENT SECTION ─── */
.content-section {
  background: var(--white);
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--gray-bdr);
}
.content-cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.content-main h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text); }
.content-main h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .6rem; color: var(--text); }
.content-main p { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: .85rem; }
.content-list { padding-left: 1.4rem; display: flex; flex-direction: column; gap: .5rem; margin-bottom: .85rem; }
.content-list li { font-size: 15px; color: #374151; line-height: 1.6; }
.content-list li strong { color: var(--text); }
.sidebar-box {
  background: var(--gray-bg);
  border-radius: 14px;
  border: 1.5px solid var(--gray-bdr);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.25rem;
}
.sidebar-box h3 { font-size: 15px; font-weight: 700; margin-bottom: .85rem; color: var(--text); }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-list li { font-size: 14px; color: #374151; line-height: 1.5; }
.sidebar-list a { color: var(--blue); text-decoration: none; font-weight: 500; }
.sidebar-list a:hover { text-decoration: underline; }

/* ─── CITY PAGE SPECIFIC ─── */
.city-hero-intro {
  background: var(--dark-mid);
  padding: 1.25rem 2rem;
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.city-intro-section {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--gray-bdr);
}
.city-intro-section h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.city-intro-section p { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: .85rem; max-width: 800px; }

/* ─── FOOTER EXPANSION ─── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.6fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

/* ─── RESPONSIVE NEW SECTIONS ─── */
@media (max-width: 900px) {
  .guide-steps { grid-template-columns: 1fr; gap: 1rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .provider-overview-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .content-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .guide-section, .tech-section, .provider-section, .city-section, .content-section { padding: 2rem 1rem; }
  .provider-overview-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .city-link { font-size: 13px; padding: .75rem .85rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─── KOMPAKT 4-KOLONNE FOOTER ─── */
.footer-grid-4 {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}
@media (max-width: 900px) {
  .footer-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid-4 .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid-4 { grid-template-columns: 1fr; }
}
