/* ══════════════════════════════════════════════════════════
   COMMUNITY PARKING — Nordic light relaunch
   Inspired by apple.com / polestar.se: white, monochrome, air.
   ══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/Inter-Variable.woff2') format('woff2-variations'), url('fonts/Inter-Variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg:          #ffffff;
  --bg-soft:     #f5f5f7;
  --bg-soft-2:   #ececee;
  --ink:         #1d1d1f;
  --ink-soft:    #6e6e73;
  --ink-faint:   #757575;
  --line:        #d2d2d7;
  --line-soft:   #e8e8ed;
  --dark-bg:     #0a0a0b;
  --dark-ink:    #f5f5f7;
  --dark-ink-soft: rgba(245,245,247,.6);
  --dark-line:   rgba(245,245,247,.16);
  --blue:        #0F5FA8;
  --blue-hover:  #0C4C86;
  --blue-light:  #4FA3E3;
  --radius-lg:   1.5rem;
  --radius:      1.1rem;
  --radius-sm:   .6rem;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --container:   1280px;
  --nav-h:       5.5rem;
  --z-menu-overlay: 400;
  --z-nav:       500;
  --z-modal:     2000;
  --z-toast:     2001;
  --z-skip-link: 3000;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
html, body { overflow-x: hidden; width: 100%; }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute; top: -60px; left: 1rem; z-index: var(--z-skip-link);
  background: var(--ink); color: var(--bg); padding: .85rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9375rem; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

h1, h2, h3, h4, h5 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-weight: 800; }
h2 { font-weight: 750; }
h3 { font-weight: 700; }
h4 { font-weight: 650; }
h5 { font-weight: 600; }

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--ink); color: var(--bg); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ═══════════ REVEAL ═══════════ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ NAV ═══════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav); height: var(--nav-h);
  display: flex; align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  #navbar { background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(1.6); -webkit-backdrop-filter: blur(14px) saturate(1.6); }
  #menu-overlay { background: rgba(255,255,255,.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
  .hero-placeholder-tag { background: rgba(255,255,255,.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  .press-tag { background: rgba(255,255,255,.14); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  #overlay { background: rgba(255,255,255,.82); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
}
.nav-inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem,4vw,3rem); display: flex; align-items: center; justify-content: space-between; }
.nav-logo, .footer-logo { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; display: flex; align-items: center; gap: .45rem; color: var(--ink); }
.nav-logo .dot, .footer-logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); display: inline-block; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links-inline { display: flex; align-items: center; gap: 1.75rem; }
.nav-links-inline a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-links-inline a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink); border-radius: 999px; padding: .5rem 1.15rem;
  font-size: .8125rem; font-weight: 600; white-space: nowrap; color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
@media (max-width: 860px) { .nav-links-inline { display: none; } }
@media (max-width: 560px) { .nav-cta { display: none; } }

.menu-btn { display: flex; align-items: center; background: none; border: none; color: var(--ink); }
.menu-btn-icon { width: 22px; height: 15px; position: relative; }
.menu-btn-icon span {
  position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease), top .35s var(--ease);
}
.menu-btn-icon span:nth-child(1) { top: 0; }
.menu-btn-icon span:nth-child(2) { top: 6.5px; }
.menu-btn-icon span:nth-child(3) { top: 13px; }
.menu-open .menu-btn-icon span:nth-child(1) { top: 6.5px; transform: rotate(45deg); }
.menu-open .menu-btn-icon span:nth-child(2) { opacity: 0; }
.menu-open .menu-btn-icon span:nth-child(3) { top: 6.5px; transform: rotate(-45deg); }

#menu-overlay {
  position: fixed; inset: 0; z-index: var(--z-menu-overlay); background: #fff;
  display: flex; flex-direction: column; justify-content: center;
  transform: translateY(-100%); transition: transform .55s var(--ease);
  padding: 6rem clamp(1.25rem,6vw,6rem);
}
.menu-open #menu-overlay { transform: translateY(0); }
.menu-overlay-links a {
  display: block; font-size: clamp(2rem,5vw,3.5rem); font-weight: 600; letter-spacing: -.03em;
  padding: .28em 0; border-bottom: 1px solid var(--line-soft); color: var(--ink);
  opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s;
}
.menu-open .menu-overlay-links a { opacity: 1; transform: translateY(0); }
.menu-overlay-links a:hover { color: var(--ink-soft); }
.menu-overlay-links a span { color: var(--ink-faint); font-size: .45em; margin-right: .5em; font-weight: 500; }
.menu-overlay-side { opacity: 0; transition: opacity .6s var(--ease) .25s; }
.menu-open .menu-overlay-side { opacity: 1; }
.menu-overlay-side h5 { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-bottom: 1rem; }
.menu-overlay-side a { display: block; font-size: 1rem; margin-bottom: .55rem; color: var(--ink-soft); transition: color .2s; }
.menu-overlay-side a:hover { color: var(--ink); }
.menu-overlay-side .block + .block { margin-top: 2.25rem; }
.menu-overlay-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; max-width: var(--container); margin: 0 auto; width: 100%; }
@media (max-width: 700px) { .menu-overlay-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ═══════════ BUTTONS ═══════════ */
.btn { display: inline-flex; align-items: center; gap: .55rem; padding: .95rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: .9375rem; border: 1px solid transparent; transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); white-space: nowrap; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-white { background: var(--bg); color: var(--dark-bg); }
.btn-white:hover { background: var(--bg-soft); }
.btn-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9375rem; color: var(--ink); }
.btn-link svg { transition: transform .25s var(--ease); width: 15px; height: 15px; }
.btn-link:hover svg { transform: translateX(3px); }
.btn-ghost { color: var(--ink-soft); font-weight: 600; font-size: .9375rem; display: inline-flex; align-items: center; gap: .4rem; }
.btn-ghost:hover { color: var(--ink); }

/* ═══════════ TYPE UTILITIES ═══════════ */
.eyebrow { display: block; font-size: .8125rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 1.1rem; text-align: center; }
.section-pad { padding: clamp(5rem,10vw,8.5rem) 0; position: relative; }
.head-center { text-align: center; max-width: 720px; margin: 0 auto clamp(3rem,6vw,5rem); }
.head-center h2 { font-size: clamp(2rem,4.5vw,3.5rem); }
.head-center p { margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.125rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ═══════════ HERO ═══════════ */
#hero { padding-top: calc(var(--nav-h) + clamp(3rem,7vw,5.5rem)); text-align: center; }
.hero-eyebrow { font-size: .875rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 1.25rem; }
.hero-title { font-size: clamp(2.5rem, 6.2vw, 4.75rem); max-width: 900px; margin: 0 auto; }
.hero-sub { margin: 1.5rem auto 0; max-width: 560px; font-size: 1.1875rem; color: var(--ink-soft); }
.hero-actions { margin-top: 2.25rem; display: flex; gap: 1.75rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-visual { margin-top: clamp(3rem,6vw,5rem); position: relative; width: 100%; aspect-ratio: 16/8; overflow: hidden; background: var(--bg-soft); }
.hero-visual video { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.28) 100%); }
.hero-placeholder-tag {
  position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 2;
  font-size: .6875rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(255,255,255,.96); color: var(--ink);
  padding: .4rem .8rem; border-radius: 999px;
}
@media (max-width: 700px) { .hero-visual { aspect-ratio: 4/5; } }

/* ═══════════ GROUP HEAD ═══════════ */
.group-head { text-align: center; max-width: 620px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }
.group-head h3 { font-size: clamp(1.5rem,2.6vw,2rem); }
.group-head p { margin-top: .75rem; color: var(--ink-soft); }
.group-sep { height: 1px; background: var(--line-soft); max-width: var(--container); margin: clamp(4rem,7vw,6rem) auto; }

/* ═══════════ SERVICE GRID ═══════════ */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.25rem; margin-bottom: clamp(3.5rem,6vw,5rem); }
.svc-card {
  background: var(--bg-soft); border-radius: var(--radius-lg); padding: 2.25rem;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.svc-card:hover { background: var(--bg-soft-2); transform: translateY(-3px); }
.svc-card .svc-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.svc-card .svc-icon svg { width: 26px; height: 26px; }
.svc-card h4 { font-size: 1.15rem; margin-top: 1.25rem; }
.svc-card p { color: var(--ink-soft); margin-top: .6rem; font-size: .9375rem; line-height: 1.65; }

/* ═══════════ STATS ═══════════ */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-soft); }
.stat-item { padding: 3rem 1.5rem; text-align: center; border-left: 1px solid var(--line-soft); }
.stat-item:first-child { border-left: none; }
.stat-num { font-size: clamp(2rem,4vw,3rem); font-weight: 600; letter-spacing: -.02em; }
.stat-label { margin-top: .5rem; font-size: .875rem; color: var(--ink-soft); }
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2n+1) { border-left: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--line-soft); }
}

/* ═══════════ TIMELINE ═══════════ */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: clamp(2rem,5vw,3.5rem); }
.timeline-line { position: absolute; left: 0; top: .4rem; bottom: .4rem; width: 1px; background: var(--line); }
.timeline-line-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0%; background: var(--ink); transition: height .1s linear; }
.timeline-node { position: relative; padding-bottom: 3.75rem; }
.timeline-node:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: calc(-1 * clamp(2rem,5vw,3.5rem)); top: .3rem; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--line); transform: translateX(5.5px); transition: background .3s var(--ease), border-color .3s var(--ease); }
.timeline-node.visible .timeline-dot { background: var(--ink); border-color: var(--ink); }
.timeline-year { font-size: .9375rem; font-weight: 700; color: var(--ink-soft); }
.timeline-node h3 { font-size: 1.375rem; margin-top: .4rem; }
.timeline-node p { color: var(--ink-soft); margin-top: .65rem; max-width: 560px; }

/* ═══════════ VALUES LIST ═══════════ */
.values-list { max-width: 640px; margin: clamp(3.5rem,6vw,5rem) auto 0; }
.values-list li { display: flex; align-items: baseline; gap: 1.25rem; padding: 1.1rem 0; border-top: 1px solid var(--line-soft); font-size: 1.1875rem; font-weight: 500; }
.values-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.values-list li .vn { font-size: .8125rem; color: var(--ink-faint); font-weight: 700; flex-shrink: 0; }

/* ═══════════ PRESS (dark, inverted) ═══════════ */
#nyheter { background: var(--dark-bg); color: var(--dark-ink); }
#nyheter .eyebrow { color: var(--dark-ink-soft); }
#nyheter h2 { color: var(--dark-ink); }
.press-list { display: flex; flex-direction: column; max-width: 980px; margin: 0 auto; }
.press-list .press-card + .press-card { margin-top: clamp(4rem,7vw,6rem); padding-top: clamp(4rem,7vw,6rem); border-top: 1px solid var(--dark-line); }
.press-card { display: grid; grid-template-columns: 160px 1fr; gap: 3.5rem; max-width: 980px; margin: 0 auto; }
.press-media-col { display: flex; flex-direction: column; justify-content: center; }
.press-media { position: relative; aspect-ratio: 4/5; background: #1a1a1c; border-radius: var(--radius-lg); flex-shrink: 0; transform: translateY(-50%); }
.press-media.landscape { aspect-ratio: 3/2; }
.press-media img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg);
  -webkit-box-reflect: below 2px linear-gradient(to top, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 100%);
}
.press-media img.grayscale { filter: grayscale(1); }
.lightbox-trigger { cursor: zoom-in; }

/* ═══════════ BILD-LIGHTBOX ═══════════ */
#lightbox-modal {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(10,10,11,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
#lightbox-modal.show { opacity: 1; pointer-events: auto; }
#lightbox-modal img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  transform: scale(.96); transition: transform .25s var(--ease);
}
#lightbox-modal.show img { transform: scale(1); }
#lightbox-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.1); color: #fff; font-size: 1.75rem; line-height: 1;
  cursor: pointer; transition: background .2s;
}
#lightbox-close:hover { background: rgba(255,255,255,.2); }
body.lightbox-open { overflow: hidden; }
.press-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(10,10,11,.65); color: var(--dark-ink); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .4rem .75rem; border-radius: 999px; }
.press-meta { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.25rem; }
.press-meta .badge { border: 1px solid var(--dark-line); color: var(--dark-ink); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .35rem .75rem; border-radius: 999px; }
.press-meta time { font-size: .875rem; color: var(--dark-ink-soft); font-weight: 500; }
.press-card h3 { font-size: clamp(1.6rem,3vw,2.35rem); color: var(--dark-ink); max-width: 620px; }
.press-body p { margin-top: 1.1rem; color: var(--dark-ink-soft); font-size: 1.0625rem; line-height: 1.75; max-width: 600px; }
.press-quote { margin-top: 1.75rem; border-left: 2px solid var(--dark-line); padding-left: 1.25rem; }
.press-quote p { font-style: normal; font-weight: 500; color: var(--dark-ink); margin-top: 0; }
.press-quote cite { display: block; font-style: normal; font-size: .875rem; margin-top: .6rem; font-weight: 600; color: var(--dark-ink-soft); }
@media (max-width: 800px) { .press-card { grid-template-columns: 1fr; gap: 2rem; } .press-media-col { max-width: 130px; } }

/* ═══════════ MANIFESTO / ABOUT ═══════════ */
.manifesto { max-width: 880px; margin: 0 auto; text-align: center; }
.manifesto p { font-size: clamp(1.4rem,2.6vw,2.15rem); font-weight: 500; line-height: 1.42; color: var(--ink); letter-spacing: -.01em; }
.manifesto strong { font-weight: 700; }
.manifesto span.muted { color: var(--ink-faint); }

.reason-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; margin-top: clamp(3.5rem,6vw,5rem); }
.reason-item { background: var(--bg); padding: 2.25rem 2rem; }
.reason-item .num { font-weight: 700; color: var(--ink-faint); font-size: .875rem; }
.reason-item h4 { font-size: 1.1rem; margin-top: .9rem; }
.reason-item p { color: var(--ink-soft); font-size: .9375rem; margin-top: .65rem; line-height: 1.65; }

/* ═══════════ SEGMENT PANELS ═══════════ */
.segment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.segment-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem; background: var(--bg-soft); }
.segment-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.segment-panel:hover img { transform: scale(1.05); }
.segment-panel::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%); }
.segment-panel-content { position: relative; z-index: 1; color: #fff; }
.segment-panel h3 { font-size: 1.85rem; color: #fff; }
.segment-panel p { color: rgba(255,255,255,.78); margin-top: .8rem; max-width: 400px; }
.segment-panel .btn { margin-top: 1.4rem; }
@media (max-width: 800px) { .segment-grid { grid-template-columns: 1fr; } }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner { border-radius: var(--radius-lg); background: var(--bg-soft); padding: clamp(3rem,6vw,5rem); text-align: center; max-width: 760px; margin: 0 auto; }
.cta-banner h3 { font-size: clamp(1.6rem,3vw,2.15rem); }
.cta-banner p { color: var(--ink-soft); margin: .9rem auto 0; max-width: 460px; }
.cta-banner .btn { margin-top: 1.75rem; }

/* ═══════════ FORMS ═══════════ */
.form-shell { max-width: 720px; margin: 0 auto; background: var(--bg-soft); border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3rem); }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.3rem; }
fieldset.field { border: none; padding: 0; min-width: 0; }
.field label, .field legend { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .5rem; color: var(--ink-soft); padding: 0; }
.field .opt { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem 1rem; color: var(--ink); font: inherit; font-size: .9375rem;
  transition: border-color .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field input.is-error, .field select.is-error, .field textarea.is-error { border-color: #d64545; }
.field input.is-valid, .field select.is-valid, .field textarea.is-valid { border-color: #b9b9bd; }
.field textarea { resize: vertical; min-height: 120px; }
.error-msg { display: block; font-size: .8125rem; color: #d64545; margin-top: .4rem; min-height: 1.1em; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%231d1d1f' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.steps-row { display: flex; align-items: center; margin-bottom: 2.25rem; }
.step-ind { display: flex; align-items: center; gap: .65rem; }
.step-ind .circ { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 700; color: var(--ink-faint); transition: all .3s var(--ease); }
.step-ind span.lbl { font-size: .8125rem; font-weight: 600; color: var(--ink-faint); transition: color .3s var(--ease); }
.step-ind.active .circ { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.step-ind.active span.lbl { color: var(--ink); }
.step-ind.done .circ { border-color: var(--ink); color: var(--ink); }
.step-ind.done span.lbl { color: var(--ink-soft); }
.step-conn { flex: 1; height: 1px; background: var(--line); margin: 0 .8rem; }

.form-pane { display: none; }
.form-pane.active { display: block; animation: fade-up .5s var(--ease); }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.pane-nav { display: flex; justify-content: flex-end; gap: .9rem; margin-top: 1.6rem; }
.pane-nav.two { justify-content: space-between; }

.tab-row { display: flex; gap: .3rem; padding: .3rem; background: var(--bg-soft-2); border-radius: 999px; margin-bottom: 2.25rem; }
.tab-btn {
  flex: 1; min-width: 0; padding: .75rem 1rem; border: none; border-radius: 999px; background: none;
  font-family: inherit; font-weight: 600; font-size: .875rem; color: var(--ink-soft);
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease); white-space: nowrap;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--ink); color: var(--bg); }
.tab-intro { color: var(--ink-soft); margin-bottom: 1.75rem; }
@media (max-width: 480px) {
  .tab-row { gap: .2rem; padding: .2rem; }
  .tab-btn { padding: .65rem .35rem; font-size: .78125rem; white-space: normal; overflow-wrap: break-word; }
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-up .5s var(--ease); }

.dropzone {
  border: 1.5px dashed var(--line); border-radius: var(--radius-sm); padding: 2rem; text-align: center;
  transition: border-color .25s var(--ease), background .25s var(--ease); cursor: pointer;
  background: none; width: 100%; display: block; font: inherit; color: inherit;
}
.dropzone.drag-over { border-color: var(--ink); background: var(--bg-soft-2); }
.dropzone svg { width: 30px; height: 30px; color: var(--ink-faint); margin: 0 auto .8rem; }
.dropzone .drop-title { font-weight: 600; font-size: .9375rem; }
.dropzone .drop-hint { font-size: .8125rem; color: var(--ink-faint); margin-top: .3rem; }
.dropzone .drop-btn { display: inline-block; margin-top: 1rem; padding: .5rem 1.1rem; border-radius: 999px; background: var(--bg-soft-2); font-size: .8125rem; font-weight: 600; }
.file-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.file-list li { display: flex; align-items: center; justify-content: space-between; background: var(--bg); border: 1px solid var(--line-soft); padding: .55rem .85rem; border-radius: var(--radius-sm); font-size: .8125rem; }
.file-list .file-size { color: var(--ink-faint); margin: 0 .75rem; }
.file-list .file-remove { background: none; border: none; color: var(--ink-faint); font-size: .9rem; }
.file-list .file-remove:hover { color: #d64545; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ═══════════ FAQ ═══════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary { list-style: none; padding: 1.6rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; font-weight: 600; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line); flex-shrink: 0; position: relative; margin-left: 1.5rem; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content:""; position:absolute; background: var(--ink); top:50%; left:50%; transform: translate(-50%,-50%); }
.faq-item summary .plus::before { width: 9px; height: 1.5px; }
.faq-item summary .plus::after { width: 1.5px; height: 9px; }
.faq-item[open] summary .plus { transform: rotate(45deg); border-color: var(--ink); }
.faq-item p { padding-bottom: 1.6rem; color: var(--ink-soft); max-width: 600px; line-height: 1.75; }
.faq-item p a { color: var(--ink); font-weight: 600; text-decoration: underline; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--bg-soft); padding-top: clamp(4rem,7vw,6rem); }
.footer-cta { text-align: center; padding-bottom: clamp(3.5rem,7vw,5.5rem); }
.footer-cta h2 { font-size: clamp(2rem,5.5vw,4rem); }
.footer-cta .btn { margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; border-top: 1px solid var(--line); padding: 3rem 0; }
.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--ink-soft); max-width: 280px; font-size: .9375rem; }
.footer-col h5 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; color: var(--ink-soft); font-size: .9375rem; margin-bottom: .65rem; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.5rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; color: var(--ink-faint); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ═══════════ OVERLAY / SNACKBAR ═══════════ */
#overlay { position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(255,255,255,.96); display: flex; align-items: center; justify-content: center; }
.spinner { position: relative; width: 52px; height: 52px; }
.ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent; }
.ring.outer { border-top-color: var(--ink); animation: spin 1s linear infinite; }
.ring.inner { inset: 9px; border-bottom-color: var(--line); animation: spin 1.4s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
#snackbar {
  position: fixed; left: 50%; bottom: 2rem; transform: translate(-50%, 20px); z-index: var(--z-toast);
  background: var(--ink); color: var(--bg); font-weight: 600; padding: .9rem 1.6rem; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
#snackbar.show { opacity: 1; transform: translate(-50%, 0); }

/* ═══════════ ANCHOR FLASH ═══════════ */
.anchor-flash { animation: flash-bg 1.1s var(--ease); }
@keyframes flash-bg { 0% { background-color: var(--bg-soft-2); } 100% { background-color: transparent; } }
#nyheter.anchor-flash { animation-name: flash-bg-dark; }
@keyframes flash-bg-dark { 0% { background-color: #1c1c1e; } 100% { background-color: var(--dark-bg); } }

@media (max-width: 700px) {
  .section-pad { padding: 4rem 0; }
  .form-row-two { grid-template-columns: 1fr; }
}

/* ═══════════ PRINT ═══════════ */
@media print {
  #navbar, #menu-overlay, .skip-link, .scroll-cue, .marquee-strip,
  .hero-visual, #overlay, #snackbar,
  .btn, .nav-cta, .menu-btn, .dropzone, .file-list, .form-note {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .container { max-width: 100% !important; }

  #nyheter, .press-card, .press-media { background: #fff !important; }
  #nyheter h2, #nyheter .eyebrow, .press-card h3, .press-meta time,
  .press-quote p, .press-quote cite, .badge { color: #000 !important; border-color: #000 !important; }
  .press-body p { color: #333 !important; }
  .press-media img { -webkit-box-reflect: none !important; }

  .segment-panel::after { display: none; }
  .segment-panel { color: #000; background: #fff; border: 1px solid #ccc; }
  .segment-panel h3, .segment-panel p { color: #000 !important; }

  .faq-item p { display: block !important; }
  .faq-item summary .plus { display: none; }
}
