/* Soundhero – delt stylesheet
   Genereret fra multipage build (build_multipage.py) */

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

    :root {
      --navy:   #0A2540;
      --teal:   #00C9A7;
      --teal-d: #00907A;
      --amber:  #F5A623;
      --light:  #F0F4F8;
      --white:  #ffffff;
      --ink:    #111111;
      --muted:  #64748B;
      --border: #E2E8F0;
      --off:    #EFEFED;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--off); color: var(--ink); }
    a { color: inherit; }

    /* multipage: sektioner er altid synlige */

    /* ── NAV ── */
    nav {
      position: sticky; top: 42px; z-index: 200; /* under den sticky topbar (42px høj) */
      background: var(--navy);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 80px;
    }
    .nav-logo { display: flex; align-items: center; cursor: pointer; background: none; border: none; }
    .nav-logo svg { height: 46px; width: auto; display: block; }
    .nav-right { display: flex; align-items: center; gap: 28px; }
    .nav-links { display: flex; gap: 18px; flex-wrap: nowrap; }
    .nav-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; cursor: pointer; transition: color .2s; }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.current, .nav-links a[aria-current="page"] { color: var(--teal); }
    .nav-cta { background: var(--teal); color: var(--navy); font-weight: 700; font-size: 13px; cursor: pointer;
      padding: 9px 18px; border-radius: 7px; text-decoration: none; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.2px; transition: opacity .15s; }
    .nav-cta:hover { opacity: .9; }
    /* ── TOPBAR — Log ind + Opret i egen bjælke over hovedmenuen (sticky sammen med nav) ── */
    .topbar { position: sticky; top: 0; z-index: 201; background: #07182B; border-bottom: 1px solid rgba(255,255,255,.07);
      display: flex; justify-content: flex-end; align-items: center; gap: 18px; padding: 0 48px; height: 42px; }
    .topbar a { text-decoration: none; font-size: 12.5px; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.2px; white-space: nowrap; }
    .topbar-login { color: rgba(255,255,255,.75); font-weight: 600; padding: 6px 4px; transition: color .15s; }
    .topbar-login:hover { color: var(--white); }
    .topbar-signup { background: var(--amber); color: var(--navy); font-weight: 700; padding: 7px 16px; border-radius: 6px; transition: opacity .15s; }
    .topbar-signup:hover { opacity: .9; }
    .nav-login-mobile { display: none; }
    .nav-cta-mobile { display: none; }
    .nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
    .nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }

    /* ── LAYOUT ── */
    .section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
    .divider { height: 1px; background: var(--border); margin: 0 48px; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .card { background: var(--white); border-radius: 12px; padding: 32px; }

    /* ── TYPE ── */
    h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 28px; letter-spacing: -0.5px; margin-bottom: 8px; color: var(--navy); }
    h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; margin-bottom: 12px; color: var(--navy); }
    p  { font-size: 15px; line-height: 1.7; color: var(--muted); }
    .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-d); margin-bottom: 18px; }

    /* ── HERO ── */
    .hero-wrap { background: var(--navy); position: relative; overflow: hidden; min-height: calc(100vh - 80px); display: flex; align-items: center; padding: 0 48px; }
    .hero-nd { position: absolute; color: var(--teal); opacity: .04; font-size: 260px; line-height: 1; pointer-events: none; user-select: none; }
    .hero-nd.n1 { top: -30px; left: 38%; transform: rotate(-10deg); }
    .hero-nd.n2 { bottom: -60px; left: 30%; transform: rotate(7deg); font-size: 160px; opacity: .025; }
    .hero-nd.n3 { top: 30px; left: 20%; font-size: 90px; opacity: .02; }
    .hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; width: 100%; }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
    .hero-h1  { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(36px,5vw,68px); letter-spacing: -2.5px; line-height: .97; color: var(--white); }
    .hero-h1 span { color: var(--teal); }
    .hero-sub { margin-top: 20px; font-size: 16px; color: rgba(255,255,255,0.72); max-width: 440px; line-height: 1.65; }
    .hero-trust { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
    .hero-trust-item { display: flex; align-items: center; gap: 8px; }
    .hero-trust-item .ck { color: var(--teal); font-size: 14px; }
    .hero-trust-item span { font-size: 13px; color: rgba(255,255,255,.82); }
    .hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
    .hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; color: var(--teal); letter-spacing: -1px; line-height: 1; }
    .hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.62); margin-top: 3px; line-height: 1.4; }
    .btn-primary { background: var(--teal); color: var(--navy); font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.2px;
      padding: 15px 28px; border-radius: 8px; text-decoration: none; font-size: 15px; display: inline-block; transition: transform .12s, opacity .15s; border:none; cursor:pointer; }
    .btn-primary:hover { opacity: .92; transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.25); cursor: pointer;
      padding: 15px 26px; border-radius: 8px; text-decoration: none; font-size: 15px; font-weight: 500; display: inline-block; transition: border-color .2s, color .2s; }
    .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
    /* Signup-knap (amber) — bruges til "Opret dig / 8 dages prøve" i hele sitet */
    .btn-signup { background: var(--amber); color: var(--navy); font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.2px;
      padding: 15px 28px; border-radius: 8px; text-decoration: none; font-size: 15px; display: inline-block; transition: transform .12s, opacity .15s; border: none; cursor: pointer; }
    .btn-signup:hover { opacity: .92; transform: translateY(-1px); }

    /* ── SIGNUP-BOKS (8 dages prøve → app.soundhero.dk) ── */
    .signup-box { background: var(--navy); border: 1px solid rgba(245,166,35,.35); border-radius: 16px; padding: 48px 48px; position: relative; overflow: hidden; }
    .signup-box .sb-note { position: absolute; font-size: 300px; color: var(--amber); opacity: .06; bottom: -70px; right: -20px; line-height: 1; pointer-events: none; user-select: none; }
    .signup-box .sb-badge { display: inline-block; background: rgba(245,166,35,.15); color: var(--amber); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; position: relative; }
    .signup-box h2 { color: #fff; position: relative; margin-top: 16px; }
    .signup-box p { color: rgba(255,255,255,.72); font-size: 16px; max-width: 620px; margin: 10px 0 22px; position: relative; }
    .signup-box p strong { color: #fff; }
    .signup-box .sb-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 28px; position: relative; }
    .signup-box .sb-points span { font-size: 13.5px; color: rgba(255,255,255,.82); font-weight: 500; }
    .signup-box .btn-signup { position: relative; }

    /* ── SAVINGS BAR (grøn linje) ── */
    .sbar { background: var(--teal); padding: 18px 48px; }
    .sbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
    .si { text-align: center; flex: 1; min-width: 120px; }
    .si-num { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: -1px; }
    .si-lbl { font-size: 11px; color: rgba(10,37,64,.7); margin-top: 2px; line-height: 1.4; }
    .sdiv { width: 1px; height: 36px; background: rgba(10,37,64,.18); }

    /* ── STAT BOXES ── */
    .stat-box { background: var(--white); border-radius: 12px; padding: 26px 22px; position: relative; overflow: hidden; }
    .stat-box .nb { position: absolute; right:-8px; bottom:-18px; font-size:76px; opacity:.05; line-height:1; pointer-events:none; }
    .stat-num  { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; letter-spacing: -1.5px; color: var(--navy); }
    .stat-lbl  { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

    /* ── INSIGHT / PROFILE VIDEO ── */
    /* ── 3 POINTERS: Hvorfor baggrundsmusik ── */
    .why-music { display: flex; flex-direction: column; gap: 14px; }
    .why-card {
      background: var(--white); border: 1px solid var(--border); border-radius: 12px;
      padding: 22px 24px; display: flex; align-items: flex-start; gap: 18px;
      transition: transform .15s, box-shadow .2s, border-color .2s;
    }
    .why-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(10,37,64,.25); border-color: transparent; }
    .why-note {
      flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
      background: linear-gradient(135deg, var(--teal), var(--teal-d));
      color: var(--white); display: flex; align-items: center; justify-content: center;
      font-size: 24px; font-family: 'Space Grotesk', sans-serif;
      box-shadow: 0 6px 14px -4px rgba(0,144,122,.4);
    }
    .why-card .why-text { flex: 1; min-width: 0; }
    .why-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; color: var(--navy); margin-bottom: 4px; letter-spacing: -.3px; }
    .why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
    @media (max-width: 560px) {
      .why-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
      .why-note { width: 40px; height: 40px; font-size: 22px; }
    }

    /* ── FEATURE BLOCKS ── */
    .feat { border-radius: 16px; padding: 56px 48px; position: relative; overflow: hidden; }
    .feat .nb { position: absolute; right: 30px; top: 14px; font-size: 220px; opacity: .05; transform: rotate(12deg); line-height: 1; pointer-events: none; }
    .feat-tag { display: inline-block; padding: 5px 13px; border-radius: 5px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
    .feat-h { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px,4vw,46px); font-weight: 700; letter-spacing: -1px; line-height: 1.08; }
    .feat-sub { margin-top: 16px; font-size: 16px; line-height: 1.65; max-width: 640px; }
    .feat-pill { display: inline-block; margin-top: 20px; padding: 9px 17px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .feat-btns { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
    .feat-light { background: var(--light); }
    .feat-light .nb { color: var(--navy); opacity: .045; }
    .feat-light .feat-tag { background: var(--navy); color: var(--white); }
    .feat-light .feat-h { color: var(--navy); }
    .feat-light .feat-h span { color: var(--teal-d); }
    .feat-light .feat-sub { color: var(--muted); }
    .feat-light .feat-pill { background: rgba(0,201,167,.1); border: 1px solid rgba(0,201,167,.3); color: var(--teal-d); font-weight: 600; }
    .feat-light .btn-primary { background: var(--navy); color: var(--white); }
    .feat-light .btn-ghost { color: var(--navy); border-color: var(--navy); }
    .feat-light .btn-ghost:hover { background: var(--navy); color: var(--white); }

    /* ── FOCUS BOX (tjekliste) ── */
    .focus-box { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px 44px; position: relative; overflow: hidden; }
    .focus-box .fb-note { position: absolute; right: -16px; bottom: -40px; font-size: 200px; color: var(--teal); opacity: .06; line-height: 1; pointer-events: none; }
    .focus-box h3 { font-size: 22px; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
    .focus-box h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); }
    .tick { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; position: relative; }
    .tick li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: #1f2937; line-height: 1.5; }
    .tick li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; stroke: var(--teal-d); fill: none; stroke-width: 2.5; }
    .tick li strong { color: var(--navy); }

    /* ── ADVARSELSBOKS (krav med tilbagevirkende kraft) ── */
    .alert-box { display: flex; gap: 22px; align-items: flex-start; background: var(--navy); border: 1.5px solid rgba(239,68,68,.45); border-radius: 16px; padding: 34px 38px; position: relative; overflow: hidden; }
    .alert-box .alert-nb { position: absolute; right: -16px; bottom: -36px; font-size: 180px; color: var(--teal); opacity: .05; line-height: 1; pointer-events: none; }
    .alert-box .alert-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: rgba(239,68,68,.16); border: 1px solid rgba(239,68,68,.5); color: #FCA5A5; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; line-height: 1; position: relative; z-index: 1; }
    .alert-box > div:last-child { position: relative; z-index: 1; }
    .alert-box h3 { color: var(--white); font-size: 21px; margin-bottom: 10px; }
    .alert-box p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7; }
    .alert-box p + p { margin-top: 10px; }
    .alert-box strong { color: var(--teal); }
    .alert-box a { color: var(--teal); text-decoration: underline; font-weight: 600; }
    .alert-box a:hover { color: #fff; }

    /* ── NODE CARDS BAND ── */
    .note-pattern { background: var(--navy); border-radius: 12px; padding: 34px 30px; text-align: center; font-size: 32px; letter-spacing: 12px; line-height: 2; height: 100%; }
    .note-pattern .nd-dim { opacity: .12; color: white; }
    .note-pattern .nd-med { opacity: .4; color: white; }
    .nc-accent { background: var(--white); border-radius: 12px; padding: 32px; height: 100%; }
    .nc-note { font-size: 56px; line-height: 1; color: var(--teal); margin-bottom: 14px; }
    .nc-h { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -.5px; }
    .nc-dark { background: var(--navy); border-radius: 12px; padding: 32px; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; min-height: 220px; }
    .nc-dark .big { position: absolute; right:-18px; top:-18px; font-size:190px; color: var(--teal); opacity:.07; line-height:1; transform: rotate(15deg); }
    .nc-badge { display:inline-block; background: var(--amber); color: var(--navy); padding: 4px 11px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }

    /* ── MARQUEE (kundelogoer) ── */
    .marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); mask: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); }
    .marquee-track { display: flex; gap: 18px; width: max-content; animation: scroll 32s linear infinite; }
    @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .logo-chip { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 18px 30px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #94a3b8; font-size: 16px; letter-spacing: .5px; white-space: nowrap; flex-shrink: 0; }
    .placeholder-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 16px; font-style: italic; }

    /* ── CTA BAND ── */
    .cta-band { background: var(--navy); color: #fff; border-radius: 16px; padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
    .cta-band .cta-note { position: absolute; font-size: 300px; color: var(--teal); opacity: .06; bottom: -70px; right: -20px; line-height: 1; pointer-events: none; }
    .cta-band h2 { color: #fff; position: relative; }
    .cta-band p { color: rgba(255,255,255,.6); font-size: 17px; max-width: 580px; margin: 10px auto 26px; position: relative; }
    .cta-band .btn-primary { position: relative; }

    /* ── OM OS / HVORDAN / FAQ ── */
    .sec-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
    .sec-head .eyebrow { display: inline-flex; }
    .sec-head p { font-size: 16px; margin-top: 10px; }
    .split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .split2 .stext p { margin-bottom: 12px; }
    .split2 .stext p.lead-strong { color: var(--navy); font-weight: 600; margin-top: 16px; }
    .visual-box { border-radius: 16px; background: var(--navy); min-height: 320px; display: flex; align-items: center; justify-content: center; color: #fff; padding: 40px; position: relative; overflow: hidden; }
    .visual-box .vb-note { position: absolute; right: -16px; bottom: -34px; font-size: 200px; color: var(--teal); opacity: .08; line-height: 1; pointer-events: none; }
    .visual-box .vb-big { font-family: 'Space Grotesk', sans-serif; font-size: 72px; font-weight: 700; letter-spacing: -2px; line-height: 1; color: var(--teal); }
    .visual-box .vb-lbl { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,.7); }
    .usecards { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
    .uc { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px 18px; text-align: center; transition: .18s; }
    .uc:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -18px rgba(10,37,64,.45); border-color: transparent; }
    .uc .em { font-size: 30px; display: block; margin-bottom: 10px; }
    .uc strong { display: block; font-family: 'Space Grotesk', sans-serif; color: var(--navy); font-size: 15px; }
    .uc span { font-size: 12.5px; color: var(--muted); }
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .step { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px; }
    .step .num { width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 16px; }
    .step h3 { margin-bottom: 6px; }
    .how-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px; }
    .how-card .hicon { width: 50px; height: 50px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .how-card .hicon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; }
    .faq-list { max-width: 820px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; color: var(--navy); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary .pl { color: var(--teal-d); font-size: 24px; line-height: 1; transition: .2s; flex-shrink: 0; }
    .faq-item[open] summary .pl { transform: rotate(45deg); }
    .faq-a { padding-bottom: 20px; color: var(--muted); font-size: 15px; line-height: 1.7; }
    .faq-a p { color: var(--muted); margin-bottom: 8px; }
    .faq-a ul, .faq-a ol { padding-left: 20px; margin: 8px 0; color: var(--muted); }
    .faq-a a { color: var(--teal-d); text-decoration: underline; cursor: pointer; }
    .btn-navy { background: var(--navy); color: #fff; font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.2px; padding: 14px 26px; border-radius: 8px; text-decoration: none; font-size: 15px; display: inline-block; cursor: pointer; border: none; transition: opacity .15s, transform .12s; }
    .btn-navy:hover { opacity: .92; transform: translateY(-1px); }

    /* ── KONTAKT ── */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .field { margin-bottom: 16px; }
    .field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--navy); }
    .field label .req { color: #EF4444; font-weight: 600; margin-left: 2px; }
    .field label .opt { color: var(--muted); font-weight: 400; font-size: 12px; margin-left: 4px; }
    .field input:invalid:not(:placeholder-shown), .field select:invalid:not(:focus), .field textarea:invalid:not(:placeholder-shown) { border-color: #FCA5A5; }
    .field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; }
    .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,167,.15); }
    .field textarea { resize: vertical; min-height: 130px; }
    .info-card { background: var(--light); border-radius: 12px; padding: 28px; margin-bottom: 18px; }
    .info-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
    .info-card .row:last-child { margin-bottom: 0; }
    .info-card .row svg { width: 22px; height: 22px; stroke: var(--teal-d); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
    .info-card .row strong { display: block; font-size: 14.5px; color: var(--navy); }
    .info-card .row span { color: var(--muted); font-size: 14px; }
    .toast { display: none; background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 14px 16px; border-radius: 10px; font-size: 14.5px; margin-bottom: 18px; }
    .form-note { font-size: 13px; color: var(--muted); margin-top: 8px; }
    .gate-hp { position: absolute; left: -9999px; }

    /* ── KONVERTERING ── */
    .trust-line { margin-top: 20px; display: flex; gap: 18px; flex-wrap: wrap; }
    .trust-line span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.6); }
    .trust-line svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 3; }
    .trust-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,201,167,.12); color: var(--teal); padding: 7px 15px; border-radius: 30px; font-size: 12.5px; font-weight: 600; margin-bottom: 18px; }
    .trust-badge .pdot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
    .cta-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; }
    .inline-link { color: var(--teal-d); font-weight: 600; text-decoration: underline; cursor: pointer; }
    .inline-link:hover { color: var(--navy); }

    /* ── KONTAKTPERSON-KORT ── */
    .person-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; display: flex; gap: 22px; align-items: center; margin-bottom: 18px; box-shadow: 0 14px 30px -20px rgba(10,37,64,.4); }
    .person-photo { width: 88px; height: 88px; border-radius: 50%; background: var(--light); border: 2px solid var(--teal); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .person-photo img { width: 100%; height: 100%; object-fit: cover; }
    .person-photo .ph-hint { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.3; }
    .person-info h4 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; color: var(--navy); margin-bottom: 2px; }
    .person-title { color: var(--teal-d); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
    .person-contact a { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; text-decoration: none; margin-bottom: 6px; }
    .person-contact a:last-child { margin-bottom: 0; }
    .person-contact a:hover { color: var(--teal-d); }
    .person-contact svg { width: 16px; height: 16px; stroke: var(--teal-d); fill: none; stroke-width: 2; flex-shrink: 0; }

    /* ════════ WIZARD-PRISBEREGNER (i hero) ════════ */
    .hero-calc { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; overflow: hidden; }
    .wiz-header { padding: 24px 24px 16px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .calc-hl-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
    .calc-hl-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(17px,2vw,24px); font-weight: 700; color: var(--white); letter-spacing: -.6px; line-height: 1.15; }
    .calc-hl-sub { margin-top: 5px; font-size: 12px; color: rgba(255,255,255,.62); }
    .wiz-progress { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; }
    .wiz-dots { display: flex; gap: 7px; align-items: center; }
    .wdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); transition: background .25s, transform .2s; }
    .wdot.active { background: var(--teal); transform: scale(1.2); }
    .wdot.done { background: rgba(0,201,167,.4); }
    .wiz-step-lbl { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .8px; text-transform: uppercase; }
    .wiz-step { padding: 24px 24px 6px; }
    .wiz-step.hidden { display: none; }
    .wiz-q { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 4px; line-height: 1.3; }
    .wiz-hint { font-size: 12px; color: rgba(255,255,255,.58); margin-bottom: 4px; }
    .wiz-opts { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
    .wopt { width: 100%; padding: 13px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.85); border-radius: 9px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 14px; text-align: left; transition: all .15s; display: flex; align-items: center; gap: 10px; }
    .wopt:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); color: white; }
    .wopt.active { background: rgba(0,201,167,.13); border-color: var(--teal); color: var(--teal); font-weight: 600; }
    .wopt-ico { font-size: 18px; flex-shrink: 0; }
    .wopt-badge { margin-left: auto; font-size: 10px; background: var(--amber); color: var(--navy); padding: 2px 7px; border-radius: 3px; font-weight: 700; letter-spacing: .4px; flex-shrink: 0; }
    .wopt-row { flex: 1; min-width: 0; }
    .wiz-slider-row { margin-top: 18px; }
    .c-range { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); outline: none; cursor: pointer; display: block; }
    .c-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--teal); cursor: pointer; box-shadow: 0 0 0 4px rgba(0,201,167,.15); }
    .c-range::-moz-range-thumb { width: 22px; height: 22px; border: none; border-radius: 50%; background: var(--teal); cursor: pointer; box-shadow: 0 0 0 4px rgba(0,201,167,.15); }
    .rval { margin-top: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: white; letter-spacing: -.5px; }
    .rval span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.6); margin-left: 4px; }
    .wiz-nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 10px; }
    .wiz-nav-end { justify-content: flex-end; }
    .wiz-back { background: none; border: none; color: rgba(255,255,255,.55); font-size: 13px; cursor: pointer; padding: 8px 0; font-family: 'Inter', sans-serif; transition: color .15s; }
    .wiz-back:hover { color: rgba(255,255,255,.9); }
    .wiz-next { background: var(--teal); color: var(--navy); border: none; padding: 12px 22px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; font-family: 'Space Grotesk', sans-serif; transition: opacity .15s; }
    .wiz-next:hover { opacity: .9; }
    .teaser-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
    .teaser-verdict { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -1px; line-height: 1.1; }
    .teaser-verdict.t-meget { color: var(--teal); }
    .teaser-verdict.t-rimeligt { color: var(--amber); }
    .teaser-sub { margin-top: 6px; font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }
    .gate-form { margin-top: 20px; }
    .gate-form > p { font-size: 12px; color: rgba(255,255,255,.62); margin-bottom: 12px; }
    .gate-input { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: white; border-radius: 8px; padding: 12px 14px; font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 10px; outline: none; transition: border-color .2s; display: block; }
    .gate-input::placeholder { color: rgba(255,255,255,.42); }
    .gate-input:focus { border-color: rgba(0,201,167,.5); }
    .gate-submit { width: 100%; background: var(--teal); color: var(--navy); padding: 14px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.3px; transition: opacity .15s; display: block; }
    .gate-submit:hover { opacity: .9; }
    .gate-priv { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.5; }
    .full-results { display: none; }
    .full-results.show { display: block; animation: fade .35s ease; }
    .r-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.05); gap: 16px; }
    .r-row:last-of-type { border-bottom: none; }
    .r-lbl  { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.4; }
    .r-lbl small { display: block; font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }
    .r-val  { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; color: white; letter-spacing: -.5px; text-align: right; white-space: nowrap; }
    .r-val.strike { color: rgba(255,255,255,.45); text-decoration: line-through; font-size: 15px; }
    .r-val.green  { color: var(--teal); }
    .r-val small  { display: block; font-size: 11px; font-weight: 400; letter-spacing: 0; color: rgba(255,255,255,.45); margin-top: 2px; text-align: right; }
    .save-box { margin-top: 16px; background: rgba(0,201,167,.1); border: 1px solid rgba(0,201,167,.3); border-radius: 12px; padding: 20px; text-align: center; }
    .save-big { font-family: 'Space Grotesk', sans-serif; font-size: 52px; font-weight: 700; color: var(--teal); letter-spacing: -3px; line-height: 1; }
    .save-kr  { font-size: 14px; color: rgba(255,255,255,.85); margin-top: 5px; font-weight: 500; }
    .save-total { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 3px; }
    .save-mo  { font-size: 12px; color: rgba(255,255,255,.62); margin-top: 8px; }
    .calc-cta { margin-top: 14px; display: block; background: var(--teal); color: var(--navy); text-align: center; padding: 14px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; width: 100%; font-family: 'Space Grotesk', sans-serif; text-decoration: none; }
    .calc-reset { margin-top: 10px; display: block; background: none; border: none; color: rgba(255,255,255,.55); font-size: 12px; cursor: pointer; width: 100%; text-align: center; padding: 8px; font-family: 'Inter', sans-serif; transition: color .15s; }
    .calc-reset:hover { color: rgba(255,255,255,.9); }
    .hero-calc .disclaimer { padding: 12px 24px 16px; border-top: 1px solid rgba(255,255,255,.06); }
    .hero-calc .disclaimer p { font-size: 11px; color: rgba(255,255,255,.55); line-height: 1.6; }

    /* ── LEGAL DOC ── */
    .legal-doc { max-width: 820px; margin: 0 auto; }
    .legal-doc h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; color: var(--navy); margin: 32px 0 10px; letter-spacing: -.3px; }
    .legal-doc h3:first-child { margin-top: 0; }
    .legal-doc p, .legal-doc ul { color: #334155; font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }
    .legal-doc ul { padding-left: 22px; }
    .legal-doc ul li { margin-bottom: 6px; }
    .legal-doc a { color: var(--teal-dk, #00907A); text-decoration: underline; }
    .legal-doc strong { color: var(--navy); }
    .legal-doc .legal-footer { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(10,37,64,.1); color: var(--muted, #64748B); font-size: 13.5px; font-style: italic; }

    /* ── LYT TIL MUSIKKEN ── */
    .track-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
    .track {
      display: flex; align-items: center; gap: 18px;
      background: var(--white); border: 1px solid var(--border); border-radius: 12px;
      padding: 14px 18px; transition: border-color .2s, box-shadow .2s, transform .12s;
      cursor: pointer;
    }
    .track:hover { border-color: var(--teal); box-shadow: 0 10px 24px -16px rgba(10,37,64,.25); }
    .track.is-playing { border-color: var(--teal); box-shadow: 0 12px 28px -12px rgba(0,201,167,.35); }
    .track-play {
      flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); color: var(--white); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; transition: background .15s, transform .12s;
    }
    .track-play:hover { background: var(--teal-dk, #00907A); transform: scale(1.05); }
    .track.is-playing .track-play { background: var(--teal); }
    .track-play .play-icon { line-height: 1; padding-left: 2px; }
    .track.is-playing .track-play .play-icon { padding-left: 0; }
    .track-info { flex: 1; min-width: 0; }
    .track-title { font-family: 'Space Grotesk', sans-serif; font-size: 15.5px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
    .track-meta { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
    .track-cat { background: rgba(0,201,167,.12); color: var(--teal-dk, #00907A); padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 11px; letter-spacing: .3px; text-transform: uppercase; }
    .track-sep { color: rgba(10,37,64,.25); }
    .track-progress {
      flex: 0 0 140px; height: 4px; background: rgba(10,37,64,.08);
      border-radius: 2px; overflow: hidden; cursor: pointer;
    }
    .track-progress-bar { height: 100%; background: var(--teal); width: 0%; transition: width .1s linear; }
    .track-time { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; min-width: 36px; text-align: right; }
    /* ── VENUE/GENRE-VÆLGER (på /lyt) ── */
    .mode-toggle { display: flex; justify-content: center; gap: 0; margin: 0 auto 20px; width: max-content;
      border: 1px solid var(--border); border-radius: 100px; background: var(--white); padding: 4px; }
    .mode-chip { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--navy);
      background: transparent; border: none; border-radius: 100px; padding: 9px 26px; cursor: pointer; transition: background .15s, color .15s; }
    .mode-chip.is-active { background: var(--teal); color: #fff; }
    .genre-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto 28px; }
    .genre-chip.hidden { display: none; }
    .genre-chip { font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--navy);
      background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 9px 18px; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
    .genre-chip:hover { border-color: var(--teal); }
    .genre-chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
    .genre-group { display: flex; flex-direction: column; gap: 10px; }
    .genre-group.hidden { display: none; }
    .genre-desc { text-align: center; font-size: 13.5px; color: var(--muted); margin: -4px auto 8px; }
    @media (max-width: 560px) {
      .track { padding: 12px 14px; gap: 12px; }
      .track-progress { display: none; }
      .track-time { display: none; }
      .track-play { width: 40px; height: 40px; }
    }

    /* ── FOOTER ── */
    footer { background: var(--navy); padding: 56px 48px 40px; }
    .foot-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
    .foot-logo svg { height: 34px; width: auto; margin-bottom: 16px; }
    .foot-tag { color: rgba(255,255,255,.45); font-size: 14px; max-width: 320px; line-height: 1.6; }
    /* Konto-knapper i footer (Log ind + Opret) */
    .foot-account { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
    .foot-account a { text-decoration: none; font-size: 13px; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.2px;
      padding: 9px 16px; border-radius: 7px; white-space: nowrap; transition: opacity .15s, color .15s, border-color .15s; }
    .foot-login { color: rgba(255,255,255,.75); font-weight: 600; border: 1px solid rgba(255,255,255,.28); }
    .foot-login:hover { color: var(--white); border-color: var(--teal); }
    .foot-signup { background: var(--amber); color: var(--navy); font-weight: 700; }
    .foot-signup:hover { opacity: .9; }
    .foot-col h5 { color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 13px; letter-spacing: .5px; margin-bottom: 14px; }
    .foot-col a, .foot-col p { display: block; color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; margin-bottom: 9px; line-height: 1.5; cursor: pointer; }
    .foot-col a:hover { color: var(--teal); }
    .foot-bottom { max-width: 1200px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.3); font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

    /* ── PRISER-SIDE ── */
    .priser-calc-wrap { background: var(--navy); border-radius: 18px; padding: 26px; max-width: 600px; margin: 0 auto; box-shadow: 0 30px 60px -30px rgba(10,37,64,.45); position: relative; overflow: hidden; }
    .priser-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 860px; margin: 36px auto 0; }
    .priser-point { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; text-align: center; }
    .priser-point .pp-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,201,167,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
    .priser-point .pp-ico svg { width: 22px; height: 22px; stroke: var(--teal-d); fill: none; stroke-width: 2; }
    .priser-point strong { display: block; font-family: 'Space Grotesk', sans-serif; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
    .priser-point span { font-size: 13px; color: var(--muted); line-height: 1.5; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1050px) {
      nav { padding: 0 22px; }
      .topbar { padding: 0 22px; }
      .nav-cta { display: none; }
      .nav-links a.nav-login-mobile { display: block; text-align: center; border: 1px solid rgba(255,255,255,.3); border-radius: 7px; padding: 12px; margin-top: 12px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
      .nav-burger { display: flex; }
      .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 12px 22px 18px; gap: 2px; border-bottom: 1px solid rgba(255,255,255,.1); box-shadow: 0 14px 26px -12px rgba(0,0,0,.5); }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 12px 6px; font-size: 15px; }
      /* Signup-CTA vises i burger-menuen på mobil (nav-knapperne er skjult her) */
      .nav-links a.nav-cta-mobile { display: block; background: var(--amber); color: var(--navy); font-weight: 700; text-align: center; border-radius: 7px; padding: 13px; margin: 10px 0 4px; font-family: 'Space Grotesk', sans-serif; }
      .section { padding: 56px 22px; }
      .divider { margin: 0 22px; }
      .hero-wrap { padding: 0 22px; min-height: auto; }
      .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 36px; }
      /* På mobil: vis prisberegneren først, teksten under */
      .hero-inner .hero-calc { order: -1; }
      .hero-stats { gap: 20px; flex-wrap: wrap; }
      .sbar { padding: 16px 22px; }
      .sdiv { display: none; }
      .si { min-width: 45%; padding: 8px 0; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .split2, .steps, .contact-grid { grid-template-columns: 1fr; }
      .usecards { grid-template-columns: 1fr 1fr; }
      .tick { grid-template-columns: 1fr; }
      .feat, .focus-box, .cta-band { padding: 36px 26px; }
      footer { padding: 44px 22px 32px; }
    }

/* ══════════ COOKIE BANNER ══════════ */
  .cookie-banner{
    position:fixed;bottom:18px;left:50%;transform:translateX(-50%);
    width:calc(100% - 32px);max-width:780px;z-index:9999;
    background:#fff;border:1px solid #e2e8f0;border-radius:14px;
    box-shadow:0 18px 40px -10px rgba(10,37,64,.25);
    padding:22px 24px;display:none;
    font-family:'Inter',system-ui,sans-serif;color:#0A2540;
  }
  .cookie-banner.show{display:block;animation:cookSlide .35s ease}
  @keyframes cookSlide{from{opacity:0;transform:translate(-50%,16px)}to{opacity:1;transform:translate(-50%,0)}}
  .cookie-banner h4{
    font-family:'Space Grotesk','Inter',sans-serif;
    font-size:16px;margin:0 0 6px;color:#0A2540;letter-spacing:-.2px;
  }
  .cookie-banner p{font-size:13.5px;line-height:1.55;color:#475569;margin:0 0 14px}
  .cookie-banner p a{color:#00907A;text-decoration:underline}
  .cookie-prefs{display:flex;flex-wrap:wrap;gap:18px;margin:0 0 16px}
  .cookie-prefs label{
    display:flex;align-items:center;gap:8px;font-size:13px;color:#0A2540;cursor:pointer;
  }
  .cookie-prefs input[type=checkbox]{accent-color:#00C9A7;width:16px;height:16px;cursor:pointer}
  .cookie-prefs .locked{opacity:.6;cursor:not-allowed}
  .cookie-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
  .cookie-actions button{
    font-family:'Inter',sans-serif;font-size:13.5px;font-weight:600;
    padding:10px 18px;border-radius:8px;cursor:pointer;border:1px solid transparent;
    transition:opacity .15s,transform .12s;
  }
  .cookie-actions .ck-decline{background:#fff;border-color:#cbd5e1;color:#475569}
  .cookie-actions .ck-decline:hover{border-color:#0A2540;color:#0A2540}
  .cookie-actions .ck-save{background:#fff;border-color:#0A2540;color:#0A2540}
  .cookie-actions .ck-save:hover{background:#f1f5f9}
  .cookie-actions .ck-accept{background:#0A2540;color:#fff}
  .cookie-actions .ck-accept:hover{opacity:.92;transform:translateY(-1px)}
  .cookie-fab{
    position:fixed;bottom:18px;left:18px;z-index:9998;
    width:42px;height:42px;border-radius:50%;
    background:#0A2540;color:#fff;border:none;cursor:pointer;
    box-shadow:0 8px 20px -6px rgba(10,37,64,.4);display:none;
    font-size:18px;line-height:1;
  }
  .cookie-fab.show{display:flex;align-items:center;justify-content:center}
  .cookie-fab:hover{opacity:.92;transform:translateY(-1px)}
  @media(max-width:520px){
    .cookie-banner{padding:18px 18px;bottom:10px}
    .cookie-banner h4{font-size:15px}
    .cookie-actions{justify-content:stretch}
    .cookie-actions button{flex:1;min-width:0}
  }
