/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KNOWYN, Design System v4 (Bootstrap-temalager)
   Sand-palett, Apple-precision-typografi, varma vita ytor.
   Lägger prototypens tokens och komponenter ovanpå Bootstrap 5.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --sand:          #E8E0D4;
  --sand-subtle:   #F0EAE1;
  --white:         #FFFFFF;
  --ink:           #0C0A09;
  --ink-secondary: #3D3A37;
  --ink-tertiary:  #726D67;
  --ink-faint:     #A8A09A;
  --purple:        #5046A5;
  --purple-hover:  #3F3887;
  --purple-pale:   #EDEBF8;
  --purple-mid:    #8C7EC4;
  --purple-data:   #9B8EC4;
  --dark-section:  #16131F;
  --dark-surface:  #1F1B2E;
  --dark-border:   rgba(255,255,255,0.08);

  /* Kompatibilitetsalias (prototypens inline-stilar använder dessa namn) */
  --warm-white:    #FFFFFF;
  --navy:          #0C0A09;
  --muted:         #3D3A37;
  --faint:         #A8A09A;
  --bg-subtle:     #F0EAE1;

  --border:        rgba(12,10,9,0.09);
  --border-strong: rgba(12,10,9,0.16);

  --shadow-xs:  0 1px 2px rgba(12,10,9,0.05);
  --shadow-sm:  0 1px 3px rgba(12,10,9,0.04), 0 4px 12px rgba(12,10,9,0.06);
  --shadow-md:  0 2px 6px rgba(12,10,9,0.05), 0 8px 24px rgba(12,10,9,0.09);
  --shadow-lg:  0 4px 8px rgba(12,10,9,0.05), 0 16px 48px rgba(12,10,9,0.12);
  --shadow-purple: 0 2px 8px rgba(80,70,165,0.20), 0 8px 24px rgba(80,70,165,0.16);

  --r-xs:  5px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  32px;
}

/* ── Bas ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 17.5px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--sand);
  color: var(--ink-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; }
input, select, textarea { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ── Ticker ──────────────────────────────────────── */
.ticker { background: var(--dark-section); height: 36px; overflow: hidden; display: flex; align-items: center; }
.ticker-inner { display: flex; gap: 80px; white-space: nowrap; animation: ticker-scroll 40s linear infinite; }
.ticker-inner span { font-size: 13.5px; letter-spacing: 0.12em; color: rgba(255,255,255,0.38); text-transform: uppercase; flex-shrink: 0; font-weight: 500; }
.ticker-inner b { color: var(--purple-data); font-weight: 600; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200; height: 60px;
  display: flex; align-items: center; padding: 0 40px; gap: 0;
  background: rgba(232,224,212,0.92);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border-bottom: 1px solid rgba(12,10,9,0.08);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; cursor: pointer; margin-right: 32px; }
.nav-links { display: flex; list-style: none; gap: 0; flex: 1; margin: 0; padding: 0; }
.nav-links a { display: block; font-size: 14.5px; font-weight: 450; color: var(--ink-tertiary); padding: 6px 14px; border-radius: var(--r-sm); transition: color 0.12s, background 0.12s; cursor: pointer; letter-spacing: -0.01em; }
.nav-links a:hover { color: var(--ink); background: rgba(29,27,26,0.05); }
.nav-links a.active { color: var(--ink); font-weight: 550; background: rgba(29,27,26,0.06); }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-lang { font-size: 13.5px; color: var(--ink-tertiary); border: 1px solid var(--border); background: transparent; padding: 5px 10px; font-family: inherit; border-radius: var(--r-sm); cursor: pointer; }
.btn-outline { font-size: 14.5px; font-weight: 500; color: var(--ink); background: transparent; border: 1px solid var(--border-strong); padding: 7px 16px; border-radius: var(--r-sm); transition: all 0.12s; letter-spacing: -0.01em; }
.btn-outline:hover { background: rgba(29,27,26,0.05); }
.btn-solid { font-size: 14.5px; font-weight: 600; color: #fff; background: var(--purple); border: none; padding: 8px 18px; border-radius: var(--r-sm); letter-spacing: -0.01em; transition: opacity 0.12s, transform 0.12s; }
.btn-solid:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: none; font-size: 22px; color: var(--ink); padding: 6px; }
.lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 2px; }
.lang-opt { font-size: 12px; font-weight: 600; color: var(--ink-tertiary); padding: 4px 7px; border-radius: 7px; letter-spacing: 0.02em; transition: background 0.12s, color 0.12s; }
.lang-opt:hover { color: var(--ink); background: rgba(29,27,26,0.06); }
.lang-opt.active { color: #fff; background: var(--purple); }

/* ── Alert banner ────────────────────────────────── */
.alert-bar { background: linear-gradient(to right, var(--purple-pale), rgba(91,74,155,0.08)); border-bottom: 1px solid rgba(91,74,155,0.18); padding: 14px 40px; display: flex; align-items: center; gap: 16px; }
.alert-tag { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--purple); color: #fff; padding: 4px 11px; border-radius: var(--r-xs); flex-shrink: 0; }
.alert-text { font-size: 15.5px; font-weight: 500; color: var(--ink); line-height: 1.45; letter-spacing: -0.008em; }
.alert-text a { color: var(--purple); font-weight: 500; }

/* ── Layout helpers ──────────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.sec { padding: 96px 40px; border-bottom: 1px solid var(--border); background: var(--sand); }
.sec.bg-white { background: var(--warm-white); }
.sec.bg-dark, .sec.bg-navy { background: var(--dark-section); border-bottom: none; }

/* ── Type scale ──────────────────────────────────── */
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 16px; height: 1.5px; background: currentColor; display: block; flex-shrink: 0; }
.h1 { font-size: 60px; font-weight: 700; color: var(--ink); line-height: 1.04; letter-spacing: -0.034em; margin-bottom: 18px; }
.h1 em { color: var(--purple); font-style: normal; }
.h2 { font-size: 50px; font-weight: 700; color: var(--ink); line-height: 1.09; letter-spacing: -0.028em; margin-bottom: 14px; }
.h2.light { color: #fff; }
.h3 { font-size: 26px; font-weight: 650; color: var(--ink); line-height: 1.24; letter-spacing: -0.018em; margin-bottom: 10px; }
.body-lg { font-size: 19px; color: var(--ink-secondary); line-height: 1.75; letter-spacing: -0.004em; }
.body-sm { font-size: 15.5px; color: var(--ink-secondary); line-height: 1.72; letter-spacing: -0.004em; }
.body-sm.light { color: rgba(255,255,255,0.5); }
.label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-faint); }

/* ── Buttons ─────────────────────────────────────── */
.cta-primary { display: inline-flex; align-items: center; gap: 7px; font-size: 15.5px; font-weight: 600; color: #fff; background: linear-gradient(170deg, #6056B8 0%, var(--purple) 60%, var(--purple-hover) 100%); border: none; padding: 15px 30px; border-radius: var(--r-lg); cursor: pointer; letter-spacing: -0.01em; transition: all 0.2s; box-shadow: var(--shadow-purple); }
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(80,70,165,0.25), 0 12px 32px rgba(80,70,165,0.18); }
.cta-secondary { display: inline-flex; align-items: center; font-size: 16.5px; font-weight: 500; color: var(--ink); background: var(--warm-white); border: 1px solid var(--border-strong); padding: 13px 26px; border-radius: var(--r-md); cursor: pointer; letter-spacing: -0.01em; transition: all 0.15s; box-shadow: var(--shadow-sm); }
.cta-secondary:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-1px); }
.cta-green { display: inline-flex; align-items: center; font-size: 15.5px; font-weight: 600; color: #fff; background: var(--purple); border: none; padding: 12px 24px; border-radius: var(--r-md); cursor: pointer; letter-spacing: -0.01em; transition: opacity 0.15s, transform 0.15s; box-shadow: var(--shadow-purple); }
.cta-green:hover { opacity: 0.88; transform: translateY(-1px); }
.link-arrow { font-size: 14.5px; font-weight: 600; color: var(--purple); letter-spacing: -0.01em; cursor: pointer; }

/* ── Hero ────────────────────────────────────────── */
.hero { background: linear-gradient(155deg, #F2EBE0 0%, var(--sand) 50%, #EAE0F4 100%); padding: 108px 40px 100px; border-bottom: 1px solid rgba(12,10,9,0.07); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(80,70,165,0.08) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(80,70,165,0.04) 0%, transparent 40%); pointer-events: none; }
.hero-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.hero-actions { display: flex; gap: 12px; align-items: center; margin: 32px 0 22px; flex-wrap: wrap; }
.hero-meta { font-size: 13.5px; color: var(--ink-faint); display: flex; gap: 18px; letter-spacing: -0.01em; flex-wrap: wrap; }

/* ── Stat card ───────────────────────────────────── */
.stat-card { background: var(--white); border: none; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.stat-card-head { padding: 16px 22px; border-bottom: 1px solid rgba(12,10,9,0.07); display: flex; justify-content: space-between; align-items: center; background: rgba(12,10,9,0.02); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; }
.stat-cell { padding: 24px 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.15s; }
.stat-cell:hover { background: rgba(29,27,26,0.02); }
.stat-cell:nth-child(2n) { border-right: none; }
.stat-cell:nth-last-child(-n+2) { border-bottom: none; }
.stat-num { font-size: 31px; font-weight: 700; color: var(--ink); letter-spacing: -0.028em; margin-bottom: 4px; line-height: 1; }
.stat-num.green { color: var(--purple); }
.stat-desc { font-size: 13.5px; color: var(--ink-tertiary); line-height: 1.45; letter-spacing: -0.004em; }
.stat-note { font-size: 11.5px; color: var(--ink-faint); margin-top: 5px; letter-spacing: 0.02em; }

/* ── Logo bar ────────────────────────────────────── */
.logo-bar { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 22px 40px; display: flex; align-items: center; gap: 32px; }
.logo-bar-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); flex-shrink: 0; white-space: nowrap; }

/* ── Value props ─────────────────────────────────── */
.vp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.vp-cell { background: var(--white); border: none; border-radius: var(--r-lg); padding: 36px 28px; cursor: pointer; transition: transform 0.22s, box-shadow 0.22s; box-shadow: var(--shadow-sm); display: block; color: inherit; }
.vp-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vp-icon { width: 46px; height: 46px; background: var(--purple-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 18px; }
.vp-title { font-size: 17.5px; font-weight: 650; color: var(--ink); margin-bottom: 9px; letter-spacing: -0.015em; }
.vp-body { font-size: 16.5px; color: var(--ink-secondary); line-height: 1.66; margin-bottom: 16px; }

/* ── Dark section ────────────────────────────────── */
.dark-grid { max-width: 1120px; margin: 0 auto; }
.dark-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 40px; }
.dark-nums { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.dark-cell { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-lg); padding: 32px 24px; transition: background 0.2s, box-shadow 0.2s; box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset; }
.dark-cell:hover { background: rgba(255,255,255,0.09); }
.dark-num { font-size: 26px; font-weight: 700; color: var(--purple-data); margin-bottom: 9px; letter-spacing: -0.022em; line-height: 1.1; }
.dark-desc { font-size: 15.5px; color: rgba(255,255,255,0.42); line-height: 1.62; }
.dark-note { font-size: 11.5px; color: rgba(155,142,196,0.35); margin-top: 9px; letter-spacing: 0.04em; }

/* ── Feature rows ────────────────────────────────── */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1120px; margin: 0 auto 80px; }
.feat-row:last-child { margin-bottom: 0; }
.feat-row.flip { direction: rtl; }
.feat-row.flip > * { direction: ltr; }
.feat-media { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; box-shadow: var(--shadow-md); }
.feat-media-placeholder { width: 100%; min-height: 320px; background: linear-gradient(160deg, var(--sand) 0%, rgba(91,74,155,0.06) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 2px dashed var(--border); border-radius: var(--r-lg); }
.feat-media-placeholder .p-icon { font-size: 33px; opacity: 0.3; }
.feat-media-placeholder .p-lbl { font-size: 13.5px; color: var(--ink-faint); letter-spacing: 0.02em; }
.feat-caption { background: rgba(250,250,248,0.96); backdrop-filter: blur(8px); border-top: 1px solid var(--border); padding: 15px 20px; position: relative; z-index: 1; }
.feat-caption-lbl { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.feat-caption-txt { font-size: 14.5px; color: var(--ink-secondary); line-height: 1.5; }
.feat-tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; background: var(--purple-pale); color: var(--purple); padding: 4px 10px; border-radius: var(--r-xs); margin-bottom: 16px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 20px; padding: 0; }
.feat-list li { display: flex; gap: 11px; font-size: 16.5px; color: var(--ink-secondary); line-height: 1.54; letter-spacing: -0.004em; }
.feat-list li::before { content: '→'; color: var(--purple); flex-shrink: 0; font-size: 13.5px; margin-top: 2px; }

/* ── Quote cards ─────────────────────────────────── */
.q-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 1120px; margin: 40px auto 0; }
.q-card { background: var(--white); border: none; border-radius: var(--r-lg); padding: 36px 32px; position: relative; box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s; }
.q-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.q-mark { font-size: 58px; color: var(--purple-pale); line-height: 1; position: absolute; top: 16px; left: 22px; font-weight: 700; pointer-events: none; }
.q-text { font-size: 16.5px; color: var(--ink-secondary); line-height: 1.72; margin-top: 30px; margin-bottom: 22px; font-style: italic; letter-spacing: -0.004em; }
.q-row { display: flex; align-items: center; gap: 10px; }
.q-av { width: 36px; height: 36px; border-radius: 50%; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; color: var(--purple); flex-shrink: 0; overflow: hidden; }
.q-av img { width: 100%; height: 100%; object-fit: cover; }
.q-name { font-size: 15.5px; font-weight: 650; color: var(--ink); letter-spacing: -0.01em; }
.q-org { font-size: 12.5px; color: var(--ink-faint); margin-top: 1px; }

/* ── Newsletter bar ──────────────────────────────── */
.newsletter { background: var(--dark-section); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nl-input { border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.1); padding: 10px 16px; font-size: 16.5px; font-family: inherit; width: 240px; border-radius: var(--r-sm); outline: none; color: #fff; transition: border-color 0.12s, box-shadow 0.12s; }
.nl-input::placeholder { color: rgba(255,255,255,0.4); }
.nl-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,74,155,0.12); }
.nl-btn { background: var(--purple); color: #fff; border: none; padding: 10px 22px; font-size: 16.5px; font-weight: 600; font-family: inherit; border-radius: var(--r-sm); cursor: pointer; letter-spacing: -0.01em; transition: opacity 0.15s, transform 0.15s; white-space: nowrap; }
.nl-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Demo calendar ───────────────────────────────── */
.demo-wrap { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.trust-list { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 15.5px; color: var(--ink-faint); letter-spacing: -0.004em; }
.trust-check { width: 17px; height: 17px; border-radius: 50%; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-check::after { content: '✓'; font-size: 10px; color: var(--purple); font-weight: 700; }
.cal-box { background: var(--white); border: none; border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.cal-lbl { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.cal-days { display: grid; grid-template-columns: repeat(5,1fr); gap: 7px; margin-bottom: 14px; }
.cal-day { border: 1px solid var(--border); padding: 9px 5px; text-align: center; cursor: pointer; background: rgba(29,27,26,0.02); border-radius: var(--r-sm); transition: all 0.15s; }
.cal-day .dn { font-size: 10px; color: var(--ink-faint); margin-bottom: 3px; letter-spacing: 0.05em; text-transform: uppercase; }
.cal-day .dd { font-size: 15.5px; font-weight: 650; color: var(--ink-tertiary); }
.cal-day.active { border-color: var(--purple); background: var(--purple-pale); }
.cal-day.active .dd { color: var(--purple); }
.cal-times { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 18px; }
.cal-time { border: 1px solid var(--border); padding: 9px; text-align: center; font-size: 14.5px; color: var(--ink-tertiary); cursor: pointer; background: rgba(29,27,26,0.02); border-radius: var(--r-sm); transition: all 0.15s; font-weight: 500; }
.cal-time.active { border-color: var(--purple); background: var(--purple-pale); color: var(--purple); font-weight: 650; }
.cal-submit { width: 100%; background: var(--purple); color: #fff; border: none; padding: 14px; font-size: 15.5px; font-weight: 650; font-family: inherit; border-radius: var(--r-md); cursor: pointer; letter-spacing: -0.01em; transition: opacity 0.15s, transform 0.15s; box-shadow: var(--shadow-purple); }
.cal-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Platform tabs ───────────────────────────────── */
.tab-bar { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 0 40px; display: flex; gap: 0; position: sticky; top: 60px; z-index: 100; overflow-x: auto; }
.tab { font-size: 16.5px; font-weight: 450; color: var(--ink-tertiary); padding: 15px 18px; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; white-space: nowrap; transition: color 0.12s; letter-spacing: -0.01em; background: transparent; border-top: none; border-left: none; border-right: none; }
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); font-weight: 650; border-bottom-color: var(--purple); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.media-grid { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; gap: 72px; }

/* ── Page hero ───────────────────────────────────── */
.page-hero { background: linear-gradient(155deg, #F2EBE0 0%, var(--sand) 60%, #EAE0F4 100%); padding: 88px 40px 80px; border-bottom: 1px solid rgba(12,10,9,0.07); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -60px; right: -60px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(91,74,155,0.06) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ── Reports ─────────────────────────────────────── */
.reports-grid { max-width: 1120px; margin: 56px auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding: 0 40px; }
.report-card { background: var(--white); border: none; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s; cursor: pointer; }
.report-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.report-thumb { height: 116px; background: linear-gradient(135deg, var(--dark-section) 0%, #2a1f4a 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.report-thumb-word { font-size: 44px; font-weight: 700; color: rgba(255,255,255,0.08); letter-spacing: 0.04em; }
.report-new { position: absolute; top: 10px; right: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; background: var(--purple-data); color: #fff; padding: 3px 9px; border-radius: var(--r-xs); }
.report-body { padding: 20px; }
.report-cat { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 7px; }
.report-title { font-size: 17.5px; font-weight: 650; color: var(--ink); margin-bottom: 8px; line-height: 1.36; letter-spacing: -0.01em; }
.report-desc { font-size: 15.5px; color: var(--ink-secondary); line-height: 1.62; margin-bottom: 16px; }
.report-foot { display: flex; align-items: center; justify-content: space-between; }
.report-date { font-size: 12.5px; color: var(--ink-faint); }
.report-dl { font-size: 14.5px; font-weight: 600; color: var(--purple); border: 1px solid var(--border); padding: 5px 12px; background: var(--purple-pale); border-radius: var(--r-xs); cursor: pointer; transition: all 0.12s; }
.report-dl:hover { border-color: var(--purple); }

/* ── Forms ───────────────────────────────────────── */
.form-box { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 15.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.form-input, .form-select, .form-textarea { border: 1px solid var(--border-strong); background: var(--warm-white); padding: 11px 14px; font-size: 15.5px; font-family: inherit; color: var(--ink); border-radius: var(--r-sm); outline: none; transition: border-color 0.12s, box-shadow 0.12s; width: 100%; letter-spacing: -0.004em; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,74,155,0.10); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; background: var(--purple); color: #fff; border: none; padding: 14px 30px; font-size: 15.5px; font-weight: 650; font-family: inherit; border-radius: var(--r-md); cursor: pointer; letter-spacing: -0.01em; transition: opacity 0.15s, transform 0.15s; box-shadow: var(--shadow-purple); }
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert { padding: 12px 16px; border-radius: var(--r-sm); font-size: 14.5px; }
.form-alert.ok { background: var(--purple-pale); color: var(--purple-hover); border: 1px solid rgba(80,70,165,0.25); }
.form-alert.err { background: #fdecec; color: #a12; border: 1px solid #f0b8b8; }

/* ── Pricing ─────────────────────────────────────── */
.country-row { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 20px 40px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.c-btn { font-size: 14.5px; font-weight: 500; padding: 7px 16px; border: 1px solid var(--border); background: transparent; color: var(--ink-tertiary); border-radius: var(--r-xl); cursor: pointer; font-family: inherit; transition: all 0.12s; letter-spacing: -0.01em; }
.c-btn:hover { border-color: var(--border-strong); color: var(--ink); }
.c-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.price-grid { max-width: 1120px; margin: 56px auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding: 0 40px; }
.price-card { background: var(--white); border: none; border-radius: var(--r-xl); padding: 40px 32px; position: relative; box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { box-shadow: 0 0 0 2px var(--purple), var(--shadow-lg); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-plan { font-size: 13.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.price-amount { font-size: 50px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 4px; line-height: 1; }
.price-period { font-size: 15.5px; color: var(--ink-faint); margin-bottom: 22px; letter-spacing: -0.01em; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-desc { font-size: 16.5px; color: var(--ink-secondary); line-height: 1.66; margin-bottom: 24px; letter-spacing: -0.004em; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; padding: 0; }
.price-list li { display: flex; gap: 9px; font-size: 16.5px; color: var(--ink-secondary); letter-spacing: -0.004em; }
.price-list li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; }
.price-btn { width: 100%; border: none; padding: 14px; font-size: 15.5px; font-weight: 650; font-family: inherit; border-radius: var(--r-md); cursor: pointer; letter-spacing: -0.01em; transition: opacity 0.15s, transform 0.15s; }
.price-btn.solid { background: var(--purple); color: #fff; box-shadow: var(--shadow-purple); }
.price-btn.solid:hover { opacity: 0.88; transform: translateY(-1px); }
.price-btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.price-btn.ghost:hover { border-color: var(--purple); color: var(--purple); }

/* ── About / values ──────────────────────────────── */
.about-hero-sec { background: linear-gradient(155deg, #0E0C16 0%, #1E1640 100%); padding: 96px 40px 80px; text-align: center; position: relative; overflow: hidden; }
.about-hero-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(91,74,155,0.18) 0%, transparent 55%); pointer-events: none; }
.about-eye { font-size: 13.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple-data); margin-bottom: 18px; position: relative; }
.about-h1 { font-size: 50px; font-weight: 700; color: #fff; line-height: 1.08; letter-spacing: -0.028em; margin-bottom: 18px; max-width: 720px; margin-left: auto; margin-right: auto; position: relative; }
.about-sub { font-size: 17.5px; color: rgba(255,255,255,0.48); line-height: 1.7; max-width: 560px; margin: 0 auto; letter-spacing: -0.006em; position: relative; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 1120px; margin: 40px auto 0; }
.val-cell { background: var(--white); border: none; border-radius: var(--r-lg); padding: 40px 32px; box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s; }
.val-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.val-n { font-size: 44px; font-weight: 700; color: var(--purple-pale); line-height: 1; margin-bottom: 16px; letter-spacing: -0.025em; }
.val-title { font-size: 19px; font-weight: 650; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; }
.val-body { font-size: 16.5px; color: var(--ink-secondary); line-height: 1.72; letter-spacing: -0.004em; }

/* ── Articles ────────────────────────────────────── */
.articles-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding: 56px 40px; }
.art-card { background: var(--white); border: none; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform 0.22s, box-shadow 0.22s; display: block; color: inherit; }
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.art-thumb { height: 136px; display: flex; align-items: flex-end; padding: 16px; }
.art-cat { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 11px; background: rgba(255,255,255,0.14); color: #fff; border-radius: var(--r-xs); }
.art-body { padding: 20px; }
.art-meta { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 8px; letter-spacing: -0.004em; }
.art-title { font-size: 16.5px; font-weight: 650; color: var(--ink); line-height: 1.34; margin-bottom: 8px; letter-spacing: -0.014em; }
.art-excerpt { font-size: 15.5px; color: var(--ink-secondary); line-height: 1.64; letter-spacing: -0.004em; }

/* ── Article body (redaktörsinnehåll) ────────────── */
.article-body { font-size: 17px; color: var(--ink-secondary); line-height: 1.75; }
.article-body h2 { font-size: 26px; font-weight: 650; color: var(--ink); margin: 32px 0 12px; letter-spacing: -0.018em; }
.article-body h3 { font-size: 20px; font-weight: 650; color: var(--ink); margin: 26px 0 10px; }
.article-body h4 { font-size: 17px; font-weight: 650; color: var(--ink); margin: 22px 0 8px; }
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 22px; }
.article-body li { margin-bottom: 7px; }
.article-body a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote { margin: 20px 0; padding: 12px 20px; border-left: 3px solid var(--purple); background: var(--purple-pale); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-style: italic; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; padding: 80px 40px; }

/* ── Footer ──────────────────────────────────────── */
.footer { background: linear-gradient(180deg, var(--dark-section) 0%, #0E0C16 100%); padding: 64px 40px 36px; }
.footer-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px; }
.f-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.f-tagline { font-size: 14.5px; color: rgba(255,255,255,0.33); line-height: 1.72; max-width: 248px; margin-bottom: 16px; letter-spacing: -0.004em; }
.f-price { font-size: 15.5px; color: rgba(255,255,255,0.22); letter-spacing: -0.01em; }
.f-price b { color: var(--purple-data); font-weight: 600; }
.f-col h4 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.f-col ul li a { font-size: 16.5px; color: rgba(255,255,255,0.44); cursor: pointer; transition: color 0.12s; letter-spacing: -0.01em; }
.f-col ul li a:hover { color: rgba(255,255,255,0.88); }
.footer-bottom { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.f-copy { font-size: 14.5px; color: rgba(255,255,255,0.18); letter-spacing: -0.01em; }
.f-langs { display: flex; gap: 12px; }
.f-langs span { font-size: 14.5px; color: rgba(255,255,255,0.24); cursor: pointer; transition: color 0.12s; }
.f-langs span:hover { color: rgba(255,255,255,0.7); }
.f-langs span.cur { color: var(--purple-data); }

/* ── Chat bubble ─────────────────────────────────── */
.chat-bubble { position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px; background: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; font-size: 25px; box-shadow: 0 4px 20px rgba(91,74,155,0.30); transition: opacity 0.15s, transform 0.15s; border: none; }
.chat-bubble:hover { opacity: 0.88; transform: translateY(-2px) scale(1.04); }

/* ── Generic section helper used inline in pages ──── */
.section { padding: 72px 40px; }
.maxw { max-width: 1120px; margin: 0 auto; }

/* ── Responsiv ───────────────────────────────────── */
@media (max-width: 980px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; background: var(--sand); border-bottom: 1px solid var(--border); padding: 8px 16px; gap: 2px; z-index: 199; }
  .nav-toggle { display: block; margin-left: auto; }
  .hero-inner, .page-hero-inner, .dark-intro, .demo-wrap, .feat-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feat-row.flip { direction: ltr; }
  .vp-grid, .q-grid, .values-grid, .reports-grid, .price-grid, .articles-grid, .dark-nums, .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .h1, .about-h1 { font-size: 40px; }
  .h2 { font-size: 34px; }
  .sec { padding: 64px 20px; }
  .hero, .page-hero, .about-hero-sec { padding: 64px 20px; }
  .newsletter, .alert-bar, .logo-bar, .country-row { padding-left: 20px; padding-right: 20px; }
  .footer { padding: 48px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; align-items: flex-start; }
}
