  :root {
    --navy: #0f2d4e;
    --navy-deep: #0a2038;
    --blue: #1663ac;
    --blue-dark: #105292;
    --amber: #f0a832;
    --amber-dark: #d18f1b;
    --brand-red: #dd3327;
    --cream: #faf8f4;
    --white: #ffffff;
    --ink: #1c2b3a;
    --ink-soft: #46586b;
    --line: #e3ded5;
    --green: #1d7a4f;
    --radius: 18px;
    --shadow: 0 6px 24px rgba(15, 45, 78, 0.10);
    --shadow-lift: 0 14px 40px rgba(15, 45, 78, 0.16);
    font-size: 100%;
  }

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

  html { scroll-behavior: smooth; scroll-padding-top: 110px; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.1875rem; /* 19px bas — stor och läsbar */
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
  }

  .skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--navy); color: #fff; padding: 12px 20px; z-index: 200;
    border-radius: 0 0 10px 0;
  }
  .skip-link:focus { left: 0; }

  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

  /* ---------- Toppremsa ---------- */
  .topbar {
    background: var(--navy-deep); color: #dce8f5;
    font-size: 0.95rem; padding: 8px 0;
  }
  .topbar .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .topbar a { color: #fff; font-weight: 700; text-decoration: none; }
  .topbar a:hover, .topbar a:focus { text-decoration: underline; }

  /* ---------- Sidhuvud ---------- */
  header.site {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  header.site .wrap {
    display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px;
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
  .logo-globe { width: 54px; height: 54px; flex-shrink: 0; }
  .logo-stack { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-text { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; }
  .logo-text .g { color: var(--blue); }
  footer.site .logo-text .g { color: #5aa2e0; }

  nav.main { margin-left: auto; }
  nav.main ul { list-style: none; display: flex; gap: 6px; }
  nav.main a {
    display: block; padding: 10px 16px; border-radius: 10px;
    text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1.05rem;
  }
  nav.main a:hover, nav.main a:focus { background: #eef3f9; color: var(--blue-dark); }

  /* språkväxlare (SV/EN) — diskret knapp bredvid textstorleken */
  .lang-btn {
    min-width: 44px; min-height: 44px; border-radius: 10px;
    border: 2px solid var(--line); background: #fff; cursor: pointer;
    font-weight: 800; color: var(--navy); font-size: 0.95rem;
    letter-spacing: 0.02em; flex-shrink: 0;
  }
  .lang-btn:hover, .lang-btn:focus { border-color: var(--blue); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: inherit; font-size: 1.15rem; font-weight: 700;
    padding: 16px 30px; border-radius: 14px; cursor: pointer;
    text-decoration: none; border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    min-height: 56px;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(22,99,172,0.35); }
  .btn-primary:hover, .btn-primary:focus { background: var(--blue-dark); box-shadow: 0 6px 20px rgba(22,99,172,0.45); }
  .btn-amber { background: var(--amber); color: var(--navy-deep); box-shadow: 0 4px 14px rgba(240,168,50,0.4); }
  .btn-amber:hover, .btn-amber:focus { background: var(--amber-dark); }
  .btn-ghost { background: #fff; color: var(--navy); border-color: var(--navy); }
  .btn-ghost:hover, .btn-ghost:focus { background: #eef3f9; }
  .btn-small { font-size: 1rem; padding: 10px 20px; min-height: 46px; }

  :is(a, button):focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

  /* ---------- Hjälte ---------- */
  .hero {
    background:
      radial-gradient(1000px 500px at 85% -10%, rgba(22,99,172,0.14), transparent 60%),
      radial-gradient(700px 400px at -10% 110%, rgba(240,168,50,0.12), transparent 60%),
      var(--white);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .hero .wrap {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
    align-items: center; padding-top: 72px; padding-bottom: 72px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #e8f1fa; color: var(--blue-dark);
    font-weight: 700; font-size: 0.95rem;
    padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem); line-height: 1.12;
    letter-spacing: -0.025em; color: var(--navy); margin-bottom: 20px;
  }
  .hero h1 em { font-style: normal; color: var(--blue); }
  .hero p.lead { font-size: 1.3rem; color: var(--ink-soft); max-width: 34em; margin-bottom: 32px; }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
  .hero-proof { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: 1rem; }
  .stars { color: var(--amber); font-size: 1.2rem; letter-spacing: 2px; }

  /* TV-illustration */
  .tv-scene { position: relative; }
  .tv-frame {
    background: var(--navy-deep); border-radius: 22px; padding: 16px;
    box-shadow: var(--shadow-lift);
    animation: floatIn 0.9s ease both;
  }
  @keyframes floatIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  .tv-screen {
    border-radius: 12px; aspect-ratio: 16 / 10; overflow: hidden; position: relative;
    background: linear-gradient(140deg, #12395f 0%, #1663ac 55%, #0d2b4b 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  }
  .tv-screen::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(400px 200px at 70% 20%, rgba(255,255,255,0.18), transparent 70%);
  }
  .tv-video {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1;
    pointer-events: none;
  }
  .tv-badge {
    z-index: 2;
    position: absolute; top: 18px; left: 18px;
    background: rgba(255,255,255,0.16); color: #fff; font-weight: 700; font-size: 0.9rem;
    padding: 6px 14px; border-radius: 999px; backdrop-filter: blur(4px);
  }
  .tv-title { color: #fff; font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; position: relative; }
  .tv-sub { color: #c8dcf0; font-size: 0.95rem; position: relative; }
  .tv-foot { display: flex; justify-content: center; }
  .tv-stand { width: 120px; height: 10px; background: #c9c2b6; border-radius: 0 0 10px 10px; }
  .chips { position: absolute; right: -14px; bottom: -46px; display: flex; gap: 8px; flex-wrap: wrap; max-width: 420px; justify-content: flex-end; }
  .chip {
    background: #fff; border: 1px solid var(--line); color: var(--navy);
    font-weight: 700; font-size: 0.85rem; padding: 7px 13px; border-radius: 999px;
    box-shadow: var(--shadow);
  }

  /* ---------- Förtroenderemsa ---------- */
  .trust { background: var(--white); }
  .trust .wrap {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    padding-top: 34px; padding-bottom: 34px;
  }
  .trust-item { display: flex; gap: 14px; align-items: flex-start; }
  .trust-item .ico {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: #e8f1fa; color: var(--blue-dark); display: grid; place-items: center;
  }
  .trust-item .ico svg { width: 26px; height: 26px; }
  .trust-item strong { display: block; font-size: 1.05rem; color: var(--navy); }
  .trust-item small { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.4; display: block; }

  /* ---------- Sektioner ---------- */
  section { padding: 84px 0; }
  .section-head { text-align: center; max-width: 46em; margin: 0 auto 52px; }
  .section-head h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem); color: var(--navy);
    letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px;
  }
  .section-head p { color: var(--ink-soft); font-size: 1.2rem; }

  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- Så fungerar det ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .step {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px 30px; box-shadow: var(--shadow); position: relative;
  }
  .step-num {
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--navy); color: #fff; font-size: 1.6rem; font-weight: 800;
    display: grid; place-items: center; margin-bottom: 20px;
  }
  .step h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 10px; }
  .step p { color: var(--ink-soft); font-size: 1.05rem; }
  .steps-note {
    margin-top: 34px; text-align: center; font-size: 1.15rem;
    color: var(--navy); background: #fdf3e0; border: 1px solid #f3ddb0;
    border-radius: 14px; padding: 18px 26px;
  }

  /* ---------- Paket ---------- */
  #priser { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
  .plan {
    background: var(--cream); border: 2px solid var(--line); border-radius: var(--radius);
    padding: 38px 32px; display: flex; flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
  .plan.featured {
    background: var(--white); border-color: var(--blue);
    box-shadow: var(--shadow-lift); position: relative;
  }
  .plan-flag {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    background: var(--amber); color: var(--navy-deep); font-weight: 800; font-size: 0.95rem;
    padding: 7px 20px; border-radius: 999px; white-space: nowrap;
  }
  .plan h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
  .plan .plan-for { color: var(--ink-soft); font-size: 1rem; margin-bottom: 22px; min-height: 3em; }
  .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
  .price .amount { font-size: 3rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
  .price .per { color: var(--ink-soft); font-size: 1.05rem; }
  .plan .no-lock { color: var(--green); font-weight: 700; font-size: 0.98rem; margin-bottom: 24px; }
  .plan ul { list-style: none; margin-bottom: 30px; flex-grow: 1; }
  .plan li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 1.05rem; }
  .plan li svg { width: 24px; height: 24px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
  .plan .btn { width: 100%; }

  .plans-two { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
  .permonth { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 22px; }
  .permonth strong { color: var(--navy); font-size: 1.15rem; }

  .dur-toggle {
    display: flex; justify-content: center; gap: 0; margin: 0 auto 40px;
    background: var(--cream); border: 2px solid var(--line); border-radius: 999px;
    padding: 6px; width: fit-content; max-width: 100%;
  }
  .dur-toggle button {
    font-family: inherit; font-size: 1.05rem; font-weight: 700; color: var(--ink-soft);
    background: transparent; border: none; border-radius: 999px;
    padding: 12px 26px; cursor: pointer; min-height: 52px; white-space: nowrap;
  }
  .dur-toggle button:hover { color: var(--navy); }
  .dur-toggle button.active { background: var(--navy); color: #fff; }

  .trial {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    max-width: 860px; margin: 40px auto 0;
    background: #fdf3e0; border: 1px solid #f3ddb0; border-radius: var(--radius);
    padding: 26px 30px; font-size: 1.12rem; color: var(--navy);
  }
  .trial .btn { flex-shrink: 0; }
  .trial-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  .kick-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 980px; margin: 0 auto; }
  .kick {
    background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px; box-shadow: var(--shadow); text-align: center;
    display: flex; flex-direction: column;
  }
  .kick-img {
    background: #fff; border-radius: 14px; padding: 18px; margin-bottom: 22px;
    display: grid; place-items: center;
  }
  .kick-img img { max-width: 100%; height: 190px; object-fit: contain; }
  .kick h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
  .kick p { color: var(--ink-soft); font-size: 1.03rem; margin-bottom: 24px; flex-grow: 1; }
  .kick-opts { display: grid; gap: 12px; }
  .kick-opts .btn { width: 100%; font-size: 1.05rem; }
  .box-note {
    text-align: center; margin: 36px auto 0; max-width: 44em;
    color: var(--ink-soft); font-size: 1.05rem;
  }
  .box-note a { color: var(--blue-dark); font-weight: 700; }

  /* ---------- Kanaler ---------- */
  .channel-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 0 auto; }
  .channel {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    padding: 12px 22px; font-weight: 700; color: var(--navy); font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(15,45,78,0.06);
  }
  .channel.more { background: var(--navy); color: #fff; border-color: var(--navy); }

  /* ---------- Omdömen ---------- */
  #omdomen { background: var(--navy); }
  #omdomen .section-head h2, #omdomen .section-head p { color: #fff; }
  #omdomen .section-head p { color: #b9cfe4; }
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .quote {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius); padding: 34px 30px; color: #eaf2fa;
  }
  .quote .stars { margin-bottom: 14px; display: block; }
  .quote p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; }
  .quote footer { color: #b9cfe4; font-weight: 700; font-size: 1rem; }

  /* ---------- FAQ ---------- */
  .faq { max-width: 820px; margin: 0 auto; }
  .faq details {
    background: var(--white); border: 1px solid var(--line); border-radius: 14px;
    margin-bottom: 14px; overflow: hidden;
  }
  .faq summary {
    cursor: pointer; padding: 22px 26px; font-weight: 700; font-size: 1.15rem; color: var(--navy);
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+"; font-size: 1.7rem; font-weight: 400; color: var(--blue);
    width: 36px; height: 36px; border-radius: 50%; background: #e8f1fa;
    display: grid; place-items: center; flex-shrink: 0; transition: transform 0.2s ease;
  }
  .faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
  .faq details[open] summary { border-bottom: 1px solid var(--line); }
  .faq .answer { padding: 20px 26px 26px; color: var(--ink-soft); font-size: 1.08rem; }

  /* ---------- Hjälpband ---------- */
  .helpband {
    background: linear-gradient(135deg, #fdf3e0, #fbe9c6);
    border-top: 1px solid #f3ddb0; border-bottom: 1px solid #f3ddb0;
  }
  .helpband .wrap {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
    padding-top: 64px; padding-bottom: 64px;
  }
  .helpband h2 { font-size: 2rem; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
  .helpband p { color: #5d4f33; font-size: 1.15rem; max-width: 32em; }
  .help-card {
    background: var(--white); border-radius: var(--radius); padding: 34px;
    box-shadow: var(--shadow-lift); text-align: center;
  }
  .help-card .label { color: var(--ink-soft); font-size: 1rem; margin-bottom: 6px; }
  .help-card .phone {
    display: block; font-size: 2.1rem; font-weight: 800; color: var(--blue-dark);
    text-decoration: none; letter-spacing: -0.01em; margin-bottom: 6px;
  }
  .help-card .hours { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 18px; }
  .help-card .btn { width: 100%; }

  /* ---------- Sidfot ---------- */
  footer.site {
    background: var(--navy-deep); color: #a9bfd6; padding: 56px 0 40px; font-size: 0.98rem;
  }
  footer.site .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  footer.site h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
  footer.site ul { list-style: none; }
  footer.site li { margin-bottom: 10px; }
  footer.site a { color: #cddcec; text-decoration: none; }
  footer.site a:hover, footer.site a:focus { text-decoration: underline; color: #fff; }
  .foot-brand .logo-text { color: #fff; font-size: 1.3rem; }
  .foot-brand p { margin-top: 12px; max-width: 28em; line-height: 1.6; }
  .foot-legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; margin-top: 10px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

  /* ---------- Kassa-modal (demo) ---------- */
  .modal-backdrop {
    position: fixed; inset: 0; background: rgba(10, 32, 56, 0.55);
    display: none; align-items: flex-start; justify-content: center;
    padding: 40px 20px; z-index: 300; overflow-y: auto;
    backdrop-filter: blur(3px);
  }
  .modal-backdrop.open { display: flex; }
  .modal {
    background: var(--white); border-radius: 20px; max-width: 640px; width: 100%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35); overflow: hidden;
    animation: floatIn 0.35s ease both;
  }
  .modal-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 30px; border-bottom: 1px solid var(--line); background: var(--cream);
  }
  .modal-head h3 { color: var(--navy); font-size: 1.3rem; }
  .modal-close {
    width: 48px; height: 48px; border-radius: 12px; border: 2px solid var(--line);
    background: #fff; font-size: 1.4rem; cursor: pointer; color: var(--navy); font-weight: 700;
  }
  .modal-close:hover { border-color: var(--blue); }
  .modal-body { padding: 30px; }

  .stepper { display: flex; gap: 8px; margin-bottom: 28px; }
  .stepper .s {
    flex: 1; text-align: center; font-size: 0.92rem; font-weight: 700; color: var(--ink-soft);
    padding-top: 12px; position: relative;
  }
  .stepper .s::before {
    content: ""; display: block; height: 6px; border-radius: 3px; background: var(--line); margin-bottom: 8px;
  }
  .stepper .s.done::before, .stepper .s.now::before { background: var(--blue); }
  .stepper .s.now { color: var(--blue-dark); }

  .order-summary {
    background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
    padding: 20px 24px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .order-summary strong { color: var(--navy); font-size: 1.15rem; display: block; }
  .order-summary small { color: var(--green); font-weight: 700; }
  .order-summary .osum-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); white-space: nowrap; }

  .field { margin-bottom: 18px; }
  .field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 1.02rem; }
  .field input {
    width: 100%; font-family: inherit; font-size: 1.1rem; padding: 14px 16px;
    border: 2px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
  }
  .field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,99,172,0.15); }
  .field .hint { font-size: 0.9rem; color: var(--ink-soft); margin-top: 6px; }

  .pay-options { display: grid; gap: 14px; margin-bottom: 10px; }
  .pay-option {
    display: flex; align-items: center; gap: 16px; cursor: pointer;
    border: 2px solid var(--line); border-radius: 14px; padding: 18px 20px; background: #fff;
  }
  .pay-option:hover { border-color: var(--blue); }
  .pay-option input { width: 26px; height: 26px; accent-color: var(--blue); flex-shrink: 0; }
  .pay-option .pay-name { font-weight: 800; color: var(--navy); font-size: 1.1rem; display: block; }
  .pay-option .pay-desc { color: var(--ink-soft); font-size: 0.95rem; }
  .pay-logo {
    margin-left: auto; font-weight: 800; font-size: 0.9rem; color: #fff;
    padding: 6px 12px; border-radius: 8px; flex-shrink: 0;
  }
  .pay-logo.btc { background: #f7931a; }
  .pay-logo.card { background: var(--navy); }

  .modal-actions { display: flex; gap: 14px; margin-top: 26px; }
  .modal-actions .btn { flex: 1; }

  .success { text-align: center; padding: 20px 10px; }
  .success .big-check {
    width: 90px; height: 90px; margin: 0 auto 24px; border-radius: 50%;
    background: #e5f4ec; color: var(--green); display: grid; place-items: center;
  }
  .success .big-check svg { width: 48px; height: 48px; }
  .success h4 { font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; }
  .success p { color: var(--ink-soft); font-size: 1.1rem; max-width: 26em; margin: 0 auto 8px; }

  .demo-ribbon {
    position: fixed; bottom: 18px; left: 18px; z-index: 250;
    background: var(--navy-deep); color: #fff; font-size: 0.85rem; font-weight: 700;
    padding: 8px 16px; border-radius: 999px; opacity: 0.85; pointer-events: none;
  }

  /* ---------- Mobil ---------- */
  @media (max-width: 960px) {
    .hero .wrap { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 56px; }
    .tv-scene { max-width: 520px; margin: 0 auto; }
    .trust .wrap { grid-template-columns: repeat(2, 1fr); }
    .steps, .plans, .plans-two, .quotes, .kick-cards { grid-template-columns: 1fr; }
    .plan.featured { order: -1; }
    .dur-toggle { flex-wrap: wrap; justify-content: center; border-radius: 20px; }
    .helpband .wrap { grid-template-columns: 1fr; }
    footer.site .wrap { grid-template-columns: 1fr; }
    nav.main { display: none; }
  }
  @media (max-width: 600px) {
    .trust .wrap { grid-template-columns: 1fr; }
    .topbar .wrap { justify-content: center; text-align: center; }
    .hero h1 { font-size: 2.1rem; }
    .chips { display: none; }
  }

/* ---------- Utrustningsguide ---------- */
.devices { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.device {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 2px 10px rgba(15,45,78,0.05);
}
.device summary {
  cursor: pointer; padding: 20px 26px; list-style: none;
  display: flex; align-items: center; gap: 18px;
}
.device summary::-webkit-details-marker { display: none; }
.device summary::after {
  content: "+"; font-size: 1.7rem; font-weight: 400; color: var(--blue);
  width: 40px; height: 40px; border-radius: 50%; background: #e8f1fa;
  display: grid; place-items: center; flex-shrink: 0; margin-left: auto;
  transition: transform 0.2s ease;
}
.device[open] summary::after { content: "–"; transform: rotate(180deg); }
.device[open] summary { border-bottom: 1px solid var(--line); background: var(--cream); }
.dev-ico {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: #e8f1fa; color: var(--blue-dark); display: grid; place-items: center;
}
.dev-ico svg { width: 30px; height: 30px; }
.dev-head strong { display: block; font-size: 1.2rem; color: var(--navy); }
.dev-head small { color: var(--ink-soft); font-size: 0.95rem; }
.dev-body { padding: 24px 28px 28px; }
.dev-app { font-size: 1.08rem; color: var(--navy); margin-bottom: 16px; }
.dev-body ol { margin: 0 0 18px 0; padding: 0; list-style: none; counter-reset: devstep; }
.dev-body ol li {
  counter-increment: devstep; position: relative;
  padding: 10px 0 10px 52px; font-size: 1.05rem; color: var(--ink);
}
.dev-body ol li::before {
  content: counter(devstep);
  position: absolute; left: 0; top: 6px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center;
}
.dev-tip {
  background: #fdf3e0; border: 1px solid #f3ddb0; border-radius: 12px;
  padding: 14px 18px; font-size: 1rem; color: #5d4f33;
}
.dev-body a { color: var(--blue-dark); }

/* ---------- Kanallista per land ---------- */
.pkg-toggle {
  display: flex; justify-content: center; gap: 0; margin: 0 auto 30px;
  background: var(--white); border: 2px solid var(--line); border-radius: 999px;
  padding: 6px; width: fit-content;
}
.pkg-toggle button {
  font-family: inherit; font-size: 1.1rem; font-weight: 700; color: var(--ink-soft);
  background: transparent; border: none; border-radius: 999px;
  padding: 12px 34px; cursor: pointer; min-height: 52px;
}
.pkg-toggle button.active { background: var(--blue); color: #fff; }

.country-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 14px; }
.cb-btn {
  font-family: inherit; cursor: pointer; text-align: left;
  background: var(--white); border: 2px solid var(--line); border-radius: 14px;
  padding: 12px 22px; min-height: 60px;
}
.cb-btn strong { display: block; font-size: 1.1rem; color: var(--navy); }
.cb-btn span { font-size: 0.88rem; color: var(--ink-soft); }
.cb-btn:hover { border-color: var(--blue); }
.cb-btn.active { border-color: var(--blue); background: #e8f1fa; box-shadow: 0 0 0 1px var(--blue) inset; }
.cb-small { padding: 10px 16px; min-height: 52px; }
.cb-small strong { font-size: 0.98rem; }

.ch-world {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; margin-bottom: 14px; max-height: 340px; overflow-y: auto;
}

.ch-search { max-width: 560px; margin: 14px auto 30px; }
.ch-search input {
  width: 100%; font-family: inherit; font-size: 1.12rem; padding: 16px 22px;
  border: 2px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink);
}
.ch-search input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,99,172,0.15); }

.ch-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px;
}
.ch-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; min-height: 58px;
}
.ch-card img { height: 34px; width: 52px; object-fit: contain; flex-shrink: 0; }
.ch-card span { font-weight: 600; font-size: 0.95rem; color: var(--navy); line-height: 1.25; }
.ch-card small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.8rem; }
.ch-msg {
  grid-column: 1 / -1; text-align: center; color: var(--ink-soft); font-size: 1.08rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px;
}
.ch-msg a { color: var(--blue-dark); font-weight: 700; }
.ch-actions { text-align: center; margin-top: 24px; }
.ch-world[hidden] { display: none; }

.pkg-toggle button strong { display: block; font-size: 1.1rem; line-height: 1.2; }
.pkg-toggle button small { display: block; font-size: 0.82rem; font-weight: 500; opacity: 0.75; line-height: 1.3; }
.pkg-toggle button { padding: 10px 28px; border-radius: 18px; text-align: center; }
.pkg-toggle { border-radius: 24px; }

/* ---------- AI-supportchatt ---------- */
.chat-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  display: flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: 1.1rem; font-weight: 700;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  padding: 16px 24px; border-radius: 999px;
  box-shadow: 0 8px 28px rgba(22,99,172,0.45);
}
.chat-fab:hover { background: var(--blue-dark); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  width: min(420px, calc(100vw - 40px));
  height: min(600px, calc(100vh - 100px));
  background: var(--white); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 70px rgba(10,32,56,0.4);
  border: 1px solid var(--line);
}
.chat-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--navy); color: #fff;
}
.chat-head strong { display: block; font-size: 1.1rem; }
.chat-head small { color: #b9cfe4; font-size: 0.88rem; }
.chat-close {
  width: 42px; height: 42px; border-radius: 10px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.14); color: #fff; font-size: 1.2rem; font-weight: 700;
}
.chat-close:hover { background: rgba(255,255,255,0.25); }
.chat-msgs {
  flex: 1; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 12px; background: var(--cream);
}
.chat-msg {
  max-width: 85%; padding: 12px 16px; border-radius: 16px;
  font-size: 1.02rem; line-height: 1.5; white-space: pre-wrap;
}
.chat-msg.from-bot { background: var(--white); border: 1px solid var(--line); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.from-user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.typing { color: var(--ink-soft); font-weight: 700; letter-spacing: 2px; }
.chat-form {
  display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--line); background: var(--white);
}
.chat-form input {
  flex: 1; font-family: inherit; font-size: 1.05rem; padding: 12px 16px;
  border: 2px solid var(--line); border-radius: 12px; color: var(--ink);
}
.chat-form input:focus { outline: none; border-color: var(--blue); }
.chat-form .btn { min-height: 48px; padding: 10px 22px; font-size: 1.02rem; }
/* Cloudflare Turnstile — dold iframe så chatten förblir ren (rekommenderat av CF) */
.chat-turnstile { width: 300px; height: 65px; overflow: visible; margin: 0 auto 8px; }
.chat-turnstile iframe { position: relative; width: 300px; height: 65px; opacity: 1; pointer-events: auto; }
.demo-ribbon { left: 18px; right: auto; }
.chat-panel[hidden] { display: none; }
.chat-fab[hidden] { display: none; }
.drift { font-size: 0.8em; margin-right: 4px; }
.drift.ok { color: #4ade80; }
.drift.warn { color: #fbbf24; }

/* ---------- Mitt konto ---------- */
.konto-wrap { max-width: 900px; }
.konto-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.konto-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); margin-bottom: 24px;
}
.konto-card h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; }
.form-msg { color: #c0392b; font-size: 1rem; min-height: 1.3em; margin-bottom: 8px; }
.konto-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.konto-sub { font-size: 1.3rem; color: var(--navy); margin: 8px 0 16px; }
.sub-block { margin-bottom: 22px; }
.sub-card { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
.sub-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.sub-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.sub-panel { margin-top: 10px; }
.sub-main h3 { font-size: 1.35rem; color: var(--navy); display: inline-block; margin-right: 12px; }
.sub-badge { display: inline-block; font-size: 0.85rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; background: #eef3f9; color: var(--ink-soft); vertical-align: middle; }
.sub-badge.ok { background: #e5f4ec; color: var(--green); }
.sub-badge.warn { background: #fdecea; color: #c0392b; }
.sub-dates { color: var(--ink-soft); margin-top: 8px; }
.sub-user { margin-top: 6px; font-size: 0.95rem; color: var(--ink-soft); }
.sub-user code { background: var(--cream); padding: 2px 8px; border-radius: 6px; }
.sub-days { text-align: center; flex-shrink: 0; background: var(--cream); border-radius: 14px; padding: 16px 22px; }
.sub-days strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.sub-days span { font-size: 0.9rem; color: var(--ink-soft); }
.sub-connect h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.sub-connect p { color: var(--ink-soft); margin: 10px 0 6px; }
.xc-table { border-collapse: separate; border-spacing: 0 6px; }
.xc-table td:first-child { color: var(--ink-soft); padding-right: 14px; white-space: nowrap; }
.xc-table code { background: var(--cream); padding: 3px 10px; border-radius: 6px; word-break: break-all; }
[hidden] { display: none !important; }
.xc-links { display: flex; gap: 12px; flex-wrap: wrap; }
.xc-links .btn { flex: 1 1 0; min-width: 200px;
                 text-align: center; justify-content: center; }
.xc-links .btn-primary { color: #fff; }
.xc-links a:not(.btn) { color: var(--blue-dark); font-weight: 600; }
.xc-hint { font-size: 0.92rem; }
.ls-section { margin: 18px 0; }
.ls-select { display: block; margin-top: 8px; padding: 10px 14px; font-size: 1.05rem;
             border: 2px solid var(--navy); border-radius: 10px; background: #fff;
             color: var(--ink); max-width: 340px; }
.ls-massbtns .btn { flex: 0 1 auto; min-width: 0; color: var(--navy); }
.ls-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
           gap: 8px 18px; margin-top: 10px; }
.ls-item { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem;
           line-height: 1.35; cursor: pointer; padding: 4px 0; }
.ls-item input { width: 22px; height: 22px; flex-shrink: 0; accent-color: var(--blue); }
details.sub-connect summary { cursor: pointer; font-weight: 700; color: var(--navy);
                              font-size: 1.12rem; padding: 2px 0; }
details.sub-connect summary code { background: var(--cream); padding: 2px 8px; border-radius: 6px;
                                   font-size: 0.95rem; }
details.sub-connect[open] summary { margin-bottom: 14px; }
.renew-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.renew-row .ls-select { margin-top: 0; flex: 1 1 260px; max-width: none; }
.renew-row .btn { flex: 0 0 auto; }
.ord-sub { color: var(--ink-soft); font-size: 0.9em; }
.cart-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 12px; }
.cart-table td { padding: 10px 12px; }
.cart-sum { margin: 12px 0 4px; font-size: 1.1rem; color: var(--navy); }
.cart-sent { background: #eef7ef; border: 1px solid #c9e6cd; border-radius: 12px;
             padding: 18px 18px 4px; margin: 4px 0 14px; }
.cart-sent-title { color: #1c7c3c; font-weight: 800; font-size: 1.25rem;
                   line-height: 1.35; margin: 0 0 6px; }
.cart-sent-sub { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; margin: 0 0 14px; }
.cart-sent + .xc-links .btn { pointer-events: none; opacity: .9; }
.ord-del { background: none; border: none; color: #a33; font-weight: 600; cursor: pointer;
           font-size: 0.95rem; padding: 6px 8px; border-radius: 8px; }
.ord-del:hover, .ord-del:focus { background: #fbeaea; }
.pay-guide { background: #eef7ef; border: 1px solid #c9e6cd; border-radius: 12px;
             padding: 16px 18px; margin: 14px 0; }
.pay-guide strong { color: var(--navy); display: block; margin-bottom: 8px; font-size: 1.05rem; }
.pay-guide ol { margin: 0 0 6px; padding-left: 22px; }
.pay-guide li { margin-bottom: 6px; line-height: 1.5; }
.pay-guide .xc-hint { margin-top: 8px; }
.co-choice { display: block; border: 2px solid var(--line); border-radius: 12px;
             padding: 14px 16px; margin-bottom: 10px; cursor: pointer; font-size: 1.02rem; }
.co-choice:hover { border-color: var(--blue); }
.co-choice input { margin-right: 10px; accent-color: var(--blue); width: 20px; height: 20px;
                   vertical-align: -3px; }
.co-choice code { background: var(--cream); padding: 2px 8px; border-radius: 6px; }
.konto-card.empty { text-align: center; }
.konto-card.empty p { color: var(--ink-soft); margin-bottom: 16px; }
.ord-table { width: 100%; border-collapse: collapse; }
.ord-table th, .ord-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 1rem; }
.ord-table th { background: var(--cream); color: var(--navy); font-size: 0.9rem; }
.ord-table tr:last-child td { border-bottom: none; }
.konto-help { background: #fdf3e0; border-color: #f3ddb0; }
.konto-help strong { color: var(--navy); font-size: 1.1rem; display: block; margin-bottom: 6px; }
.konto-help p { color: #5d4f33; margin-bottom: 14px; }
@media (max-width: 700px) {
  .konto-cols { grid-template-columns: 1fr; }
  .sub-top { flex-direction: column; align-items: flex-start; }
}

/* ---------- App-brickor i utrustningsguiden ---------- */
.app-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 18px; }
.app-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 16px 10px 10px; min-width: 180px;
}
.app-chip .app-ico {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; object-fit: cover;
  background: var(--cream); display: grid; place-items: center;
  font-weight: 800; font-size: 1.25rem; color: #fff;
}
.app-chip .app-meta strong { display: block; color: var(--navy); font-size: 1.02rem; line-height: 1.2; }
.app-chip .app-meta small { color: var(--ink-soft); font-size: 0.85rem; }
.app-chip .app-store { display: inline-block; margin-top: 2px; }
.login-btn { white-space: nowrap; }
@media (max-width: 960px) { .login-btn { display: none; } }

/* ---------- Header: aldrig radbrytning ---------- */
header.site .wrap { flex-wrap: nowrap; gap: 18px; }
nav.main ul { flex-wrap: nowrap; }
nav.main a { white-space: nowrap; padding: 10px 12px; font-size: 1rem; }
header.site .logo { flex-shrink: 0; }
header.site .btn-small { white-space: nowrap; flex-shrink: 0; }

/* mellanbredder: krymp det som tål det istället för att bryta rad */
@media (max-width: 1180px) {
  nav.main a { padding: 10px 9px; font-size: 0.95rem; }
  header.site .wrap { gap: 12px; }
  .logo-globe { width: 44px; height: 44px; }
  .logo-text { font-size: 1.6rem; }
}
@media (max-width: 1040px) {
  .lang-btn { display: none; }               /* språkvalet finns kvar i mobilmenyn */
}
@media (max-width: 960px) {
  header.site .wrap { flex-wrap: wrap; }     /* mobil: här FÅR den bryta */
  nav.main { display: none; }
  .login-btn { display: inline-flex; }       /* logga in kvar på mobil */
}

/* ---------- Hamburgermeny (ersätter huvudmenyn ≤960px) ---------- */
.nav-burger { display: none; min-width: 50px; min-height: 50px; border: 2px solid var(--navy);
              border-radius: 12px; background: #fff; cursor: pointer; flex-shrink: 0;
              flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 3px; background: var(--navy); border-radius: 2px; }
.nav-burger[aria-expanded="true"] { background: #eef3f9; }
.mobile-menu { display: none; }
@media (max-width: 960px) {
  .nav-burger { display: flex; }
  .mobile-menu.open { display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(15, 45, 78, 0.14); }
  .mobile-menu ul { list-style: none; padding: 10px 20px 16px; }
  .mobile-menu a { display: block; padding: 14px 12px; font-size: 1.15rem; font-weight: 600;
    color: var(--ink); text-decoration: none; border-radius: 10px; }
  .mobile-menu a:hover, .mobile-menu a:focus { background: #eef3f9; color: var(--blue-dark); }
}

/* ---------- Varukorgsindikator på "Mitt konto" (assets/session.js) ---------- */
a.nav-has-cart { position: relative; }
.nav-cart-badge {
  position: absolute; top: -7px; right: -6px; z-index: 6;
  display: inline-flex; align-items: center; gap: 2px;
  background: linear-gradient(180deg, #ffd77a 0%, var(--amber) 100%);
  color: var(--navy-deep);
  border: 2px solid #fff; border-radius: 999px;
  padding: 2px 6px 2px 5px;
  font-size: 0.7rem; font-weight: 800; line-height: 1;
  box-shadow: 0 2px 5px rgba(15, 45, 78, 0.18);
  white-space: nowrap;
}
.nav-cart-badge svg { width: 11px; height: 11px; }
.nav-cart-badge i { font-style: normal; }

/* Betalvals-knappar i varukorgen (kort / Bitcoin) */
.cart-pay-group { display: flex; gap: 10px; flex-wrap: wrap; }
.cart-pay-group .btn { flex-shrink: 0; }
.btc-disc { display:inline-block; background:#f59e0b; color:#fff; font-weight:800;
  font-size:0.78em; padding:2px 8px; border-radius:999px; margin-left:6px;
  vertical-align:middle; letter-spacing:.02em; }
.btc-hint { margin:2px 0 8px; color:#b45309; font-weight:600; }


/* mobil: logga + Logga in + Se paket på EN rad */
@media (max-width: 700px) {
  header.site .wrap { flex-wrap: nowrap; gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  header.site .logo { gap: 6px; }
  .logo-globe { width: 34px; height: 34px; }
  .logo-text { font-size: 1.35rem; }
  header.site .btn-small { font-size: 0.92rem; padding: 9px 13px; min-height: 42px; }
  .login-btn { margin-left: auto; }
}
@media (max-width: 400px) {
  .logo-text { font-size: 1.2rem; }
  header.site .btn-small { font-size: 0.86rem; padding: 8px 10px; }
}

/* kod-inloggning */
.konto-login { max-width: 520px; margin: 0 auto 24px; }
.code-input {
  font-size: 2rem !important; letter-spacing: 10px; text-align: center;
  font-weight: 800; color: var(--navy);
}

/* ---------- Gul notis till befintliga kunder (assets/kundnotis.js) ---------- */
.kundnotis {
  background: linear-gradient(180deg, #ffd77a 0%, var(--amber) 100%);
  color: var(--navy-deep);
  border-bottom: 3px solid var(--amber-dark);
}
.kundnotis .wrap {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 14px; padding-bottom: 14px;
}
.kn-badge {
  background: var(--navy-deep); color: #fff; font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.kn-text { flex: 1 1 320px; font-size: 1.05rem; line-height: 1.5; }
.kn-link {
  color: var(--navy-deep); font-weight: 800; text-decoration: underline;
  text-underline-offset: 3px; white-space: nowrap;
  padding: 10px 18px; border: 2px solid var(--navy-deep); border-radius: 999px;
  background: rgba(255,255,255,0.55);
}
.kn-link:hover, .kn-link:focus { background: #fff; text-decoration: none; }
.kn-close {
  background: none; border: 0; cursor: pointer; color: var(--navy-deep);
  font-size: 1.1rem; line-height: 1; padding: 10px; border-radius: 8px;
}
.kn-close:hover, .kn-close:focus { background: rgba(255,255,255,0.5); }
@media (max-width: 700px) {
  .kundnotis .wrap { gap: 10px; }
  .kn-text { flex-basis: 100%; font-size: 1rem; }
  .kn-link { padding: 9px 14px; }
}

/* ---------- Sidan "Du som redan är kund" ---------- */
.bk-hero {
  background: linear-gradient(180deg, #ffd77a 0%, #f7c356 100%);
  border-bottom: 3px solid var(--amber-dark);
  padding: 46px 0 40px;
}
.bk-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--navy-deep);
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px;
}
.bk-hero p { font-size: 1.15rem; color: #3a2a06; max-width: 760px; }
.bk-body { padding: 46px 0 20px; }
.bk-body h2 {
  font-size: 1.6rem; color: var(--navy); margin: 36px 0 12px;
}
.bk-body h2:first-of-type { margin-top: 0; }
.bk-body p, .bk-body li { font-size: 1.1rem; }
.bk-body ul { margin: 12px 0 12px 26px; }
.bk-body li { margin-bottom: 8px; }
.bk-steps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 16px; }
.bk-steps li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px 20px 74px; position: relative; box-shadow: var(--shadow);
}
.bk-steps li::before {
  counter-increment: bkstep; content: counter(bkstep);
  position: absolute; left: 20px; top: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--amber); color: var(--navy-deep);
  font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.bk-steps { counter-reset: bkstep; }
.bk-card {
  background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--amber);
  border-radius: var(--radius); padding: 22px 24px; margin-top: 18px;
  box-shadow: var(--shadow);
}
.bk-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 10px; }

/* 10-dagarsläget: paket som saknar 10-dagarsval (Standard) gråmarkeras */
.plan.plan-dim { opacity: .45; }
.plan.plan-dim .btn { pointer-events: none; }
