:root {
    --bg: #0B0B0F;
    --bg-soft: #0F0F16;
    --bg-card: #14141C;
    --primary: #4F46E5;
    --primary-soft: #6366F1;
    --accent: #6366F1;
    --light-indigo: #818CF8;
    --text: #FFFFFF;
    --muted: #A4A4B5;
    --muted-dim: #6E6E80;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --glass: rgba(255, 255, 255, 0.03);
    --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 60px -10px rgba(79, 70, 229, 0.45);
    --radius: 16px;
    --radius-lg: 24px;
    --max: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  :root[data-theme="light"] {
    --bg: #F6F6FB;
    --bg-soft: #FFFFFF;
    --bg-card: #FFFFFF;
    --text: #0B0B0F;
    --muted: #55556A;
    --muted-dim: #9494A6;
    --line: rgba(11, 11, 15, 0.08);
    --line-strong: rgba(11, 11, 15, 0.12);
    --glass: rgba(11, 11, 15, 0.02);
    --shadow: 0 24px 60px -24px rgba(60, 60, 90, 0.28);
  }

  @property --ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg); color: var(--text); line-height: 1.6;
    -webkit-font-smoothing: antialiased; overflow-x: clip;
    transition: background .5s var(--ease), color .5s var(--ease);
  }
  h1, h2, h3, h4 { font-family: 'Inter Tight', sans-serif; line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
  /* Bebas Neue på stora titlar + lätt shimmer */
  h1, h2 { font-family: 'Bebas Neue', 'Inter Tight', sans-serif; font-weight: 400; letter-spacing: 0.02em; line-height: 0.98; }
  h2 { background: linear-gradient(100deg, #fff 34%, #c7d2fe 50%, #fff 66%); background-size: 260% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: titleSheen 6.5s ease-in-out infinite; }
  @keyframes titleSheen { 0%, 100% { background-position: 135% 0; } 50% { background-position: -35% 0; } }
  @media (prefers-reduced-motion: reduce) { h2 { animation: none; } }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
  ::selection { background: rgba(79,70,229,0.4); color: #fff; }

  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); padding: 6px 14px; border: 1px solid var(--line-strong); border-radius: 100px; background: var(--glass); }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

  /* grain overlay */
  .grain { position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

  /* scroll progress */
  .progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9999; background: linear-gradient(90deg, var(--primary), var(--accent)); box-shadow: 0 0 12px rgba(79,70,229,0.7); }

  /* custom cursor */
  .cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9997; transform: translate(-50%, -50%); will-change: transform; }
  .cursor-dot { width: 7px; height: 7px; background: var(--accent); }
  .cursor-ring { width: 48px; height: 48px; border: 2px solid rgba(99,102,241,0.9); box-shadow: 0 0 20px rgba(99,102,241,0.4), inset 0 0 12px rgba(99,102,241,0.15); transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s, box-shadow .25s; }
  .cursor-ring.hot { width: 78px; height: 78px; background: rgba(99,102,241,0.14); border-color: rgba(129,140,248,1); box-shadow: 0 0 32px rgba(99,102,241,0.55), inset 0 0 16px rgba(99,102,241,0.2); }
  body.has-cursor .magnetic { transition: box-shadow .25s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease) !important; will-change: transform; }
  @media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; } }

  /* buttons */
  .btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: 'Inter Tight'; font-weight: 600; font-size: 16px; padding: 15px 26px; border-radius: 12px; cursor: pointer; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s; white-space: nowrap; }
  .btn-primary { background: linear-gradient(180deg, var(--primary-soft), var(--primary)); color: #fff; box-shadow: 0 10px 30px -8px rgba(79,70,229,0.6); }
  .btn-primary:hover { box-shadow: 0 16px 44px -10px rgba(79,70,229,0.8); }
  .btn-secondary { background: var(--glass); color: var(--text); border-color: var(--line-strong); }
  .btn-secondary:hover { border-color: rgba(120,120,160,0.5); }
  .btn-arrow { transition: transform .25s var(--ease); }
  .btn:hover .btn-arrow { transform: translateX(4px); }

  /* ===== NAVBAR v2 – Floating glass command bar ===== */
  :root { --nav-h: 72px; --nav-dock-h: 56px; --nav-pill-h: 38px; }
  #navSentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }

  header { position: sticky; top: 0; left: 0; right: 0; z-index: 100; background: transparent; }
  .nav {
    position: relative; display: flex; align-items: center; justify-content: space-between; gap: 18px;
    height: var(--nav-h); max-width: 100%; margin: 0; padding: 0 32px;
    border: 1px solid transparent; border-radius: 0; background: transparent;
    transition: max-width .5s var(--ease), height .5s var(--ease), margin .5s var(--ease), padding .5s var(--ease), background .5s var(--ease), border-radius .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
    opacity: 1; transform: none; animation: navDropIn .8s var(--ease) .15s both;
  }
  @keyframes navDropIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

  .logo { display: flex; align-items: center; gap: 12px; font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; position: relative; cursor: pointer; flex: 0 0 auto; }
  .logo-mark { width: 32px; height: 32px; display: grid; place-items: center; }
  .logo-text { background: linear-gradient(90deg,#fff,#a5b4fc,#fff,#a5b4fc); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: logoGradient 5s ease infinite; }
  @keyframes logoGradient { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
  .logo-status { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-left: 8px; padding: 5px 10px; border-radius: 100px; background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.2); white-space: nowrap; overflow: hidden; transition: opacity .35s var(--ease), max-width .45s var(--ease), margin .45s var(--ease), padding .45s var(--ease), border-color .35s; max-width: 200px; }
  .status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: statusPulse 2s ease-in-out infinite; flex: 0 0 auto; }
  @keyframes statusPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

  .nav-center { position: relative; display: flex; align-items: center; gap: 2px; padding: 4px; border-radius: 100px; background: var(--glass); border: 1px solid var(--line); }
  .nav-ind { position: absolute; top: 4px; bottom: 4px; left: 0; width: 0; border-radius: 100px; background: var(--glass); border: 1px solid var(--line-strong); opacity: 0; z-index: 0; transition: transform .4s var(--ease), width .4s var(--ease), opacity .3s; pointer-events: none; }
  .navlink { position: relative; z-index: 1; padding: 8px 13px; border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--muted); white-space: nowrap; transition: color .25s; }
  .navlink:hover { color: var(--text); }
  .navlink.active { color: var(--text); }
  .nav-ai { display: inline-flex; align-items: center; }
  .ai-badge { display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #000; background: var(--accent); padding: 2px 6px; border-radius: 100px; margin-left: 5px; animation: aiBadgePulse 2.5s ease-in-out infinite; }
  @keyframes aiBadgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); } 50% { box-shadow: 0 0 0 6px rgba(99,102,241,0); } }

  .nav-right { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
  .theme-toggle { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--text); display: grid; place-items: center; cursor: pointer; flex: 0 0 auto; transition: border-color .2s, transform .35s var(--ease), width .4s var(--ease), height .4s var(--ease); }
  .theme-toggle:hover { border-color: rgba(120,120,160,0.5); transform: rotate(18deg); }
  .theme-toggle svg { width: 18px; height: 18px; transition: transform .5s var(--ease); }
  .theme-toggle.rotated svg { transform: rotate(180deg); }

  .nav-cta { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: var(--nav-pill-h); padding: 0 20px; border-radius: 100px; font-family: 'Inter Tight'; font-weight: 600; font-size: 14.5px; line-height: 1; white-space: nowrap; color: #fff; flex: 0 0 auto; background: linear-gradient(180deg, var(--primary-soft), var(--primary)); box-shadow: 0 8px 24px -8px rgba(79,70,229,0.6); transition: transform .25s var(--ease), box-shadow .25s var(--ease), height .4s var(--ease), padding .4s var(--ease), font-size .4s var(--ease); }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(79,70,229,0.8); }
  .btn-arrow { display: inline-block; transition: transform .25s var(--ease); }
  .nav-cta:hover .btn-arrow { transform: translateX(4px); }

  .menu-btn { display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--text); cursor: pointer; place-items: center; flex: 0 0 auto; }
  .menu-btn svg { width: 22px; height: 22px; }

  /* ===== Dock (scrolled) – floating glass pill ===== */
  header.scrolled .nav {
    --nav-h: var(--nav-dock-h);
    width: fit-content; max-width: min(880px, calc(100% - 36px)); margin: 14px auto; padding: 0 24px; border-radius: 100px; border-color: var(--line-strong);
    background: color-mix(in srgb, var(--bg-card) 72%, transparent);
    -webkit-backdrop-filter: blur(40px) saturate(140%); backdrop-filter: blur(40px) saturate(140%);
    box-shadow: 0 18px 50px -18px rgba(0,0,0,0.6);
  }
  header.scrolled .nav::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: linear-gradient(120deg, rgba(99,102,241,0.65), rgba(99,102,241,0.25) 45%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.9;
  }
  header.scrolled .logo-status { opacity: 0; max-width: 0; margin-left: 0; padding-left: 0; padding-right: 0; border-color: transparent; }
  header.scrolled .nav-cta { height: auto; padding: 7px 15px; font-size: 12.5px; border-radius: 100px; margin-right: 4px; box-shadow: 0 6px 18px -8px rgba(79,70,229,0.55); }

  /* ===== Mobil (<=880px): solid bar + hamburgare ===== */
  @media (max-width: 880px) {
    .nav-center { display: none; }
    .theme-toggle { display: none; }
    .nav-right .nav-cta { display: none; }
    .menu-btn { display: grid; }
    .logo-status { display: none; }
    .nav { padding: 0 18px; height: 64px; }
    header.scrolled .nav { --nav-h: 64px; width: auto; max-width: 100%; margin: 0; border-radius: 0; padding: 0 18px; background: color-mix(in srgb, var(--bg) 92%, transparent); box-shadow: 0 6px 20px -12px rgba(0,0,0,0.6); }
    header.scrolled .nav::before { display: none; }
  }

  /* ===== Mobil fullskärms-overlay ===== */
  .mobile-overlay { position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 32px; background: color-mix(in srgb, var(--bg) 96%, transparent); -webkit-backdrop-filter: blur(26px); backdrop-filter: blur(26px); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
  .mobile-overlay.open { opacity: 1; visibility: visible; }
  .mobile-close { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--text); display: grid; place-items: center; cursor: pointer; }
  .mobile-close svg { width: 24px; height: 24px; }
  .mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .mobile-nav a { font-family: 'Inter Tight'; font-weight: 700; font-size: 30px; letter-spacing: -0.02em; color: var(--text); padding: 10px 16px; opacity: 0; transform: translateY(14px); }
  .mobile-overlay.open .mobile-nav a { animation: mobileItemIn .5s var(--ease) forwards; }
  .mobile-overlay.open .mobile-nav a:nth-child(1){ animation-delay: .06s; }
  .mobile-overlay.open .mobile-nav a:nth-child(2){ animation-delay: .12s; }
  .mobile-overlay.open .mobile-nav a:nth-child(3){ animation-delay: .18s; }
  .mobile-overlay.open .mobile-nav a:nth-child(4){ animation-delay: .24s; }
  .mobile-overlay.open .mobile-nav a:nth-child(5){ animation-delay: .30s; }
  .mobile-overlay.open .mobile-nav a:nth-child(6){ animation-delay: .36s; }
  @keyframes mobileItemIn { to { opacity: 1; transform: none; } }
  .mobile-nav a:hover { color: var(--primary-soft); }
  .mobile-cta { margin-top: 20px; width: 100%; max-width: 320px; height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 14px; font-family: 'Inter Tight'; font-weight: 700; font-size: 18px; color: #fff; background: linear-gradient(180deg, var(--primary-soft), var(--primary)); box-shadow: 0 12px 32px -8px rgba(79,70,229,0.6); }
  .mobile-theme { margin-top: 4px; background: none; border: 0; color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer; padding: 10px; }
  @media (min-width: 881px) { .mobile-overlay { display: none; } }

  :root[data-theme="light"] .nav-center { background: rgba(255,255,255,0.5); border-color: rgba(0,0,0,0.06); }
  :root[data-theme="light"] .nav-ind { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.08); }
  :root[data-theme="light"] .logo-status { background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.15); }
  :root[data-theme="light"] header.scrolled .nav { background: rgba(255,255,255,0.85); box-shadow: 0 18px 50px -18px rgba(60,60,90,0.22); }

  body.neon .nav { box-shadow: 0 0 24px -6px rgba(168,85,247,0.45); }
  @keyframes neonPulse { 0% { box-shadow: 0 0 0 0 rgba(168,85,247,0.6); } 100% { box-shadow: 0 0 0 0 rgba(168,85,247,0); } }

  @media (prefers-reduced-motion: reduce) {
    .nav { opacity: 1 !important; transform: none !important; animation: none !important; }
    .logo-text { animation: none; background-position: 0 50%; }
    .nav, .nav-cta, .theme-toggle, .navlink, .nav-ind, .logo-status, .mobile-overlay { transition: none !important; }
  }

  /* ===== Aktivt navlänk-tillstånd (nuvarande sida) ===== */
  .navlink.active { color: var(--text); }
  .navlink.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 1px; height: 2px; border-radius: 2px; background: var(--primary-soft); }
  .mobile-nav a.active { color: var(--primary-soft); }

  /* ===== Tjänstesektion: "Läs mer"-länk ===== */
  .svc-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: 'Inter Tight'; font-weight: 600; font-size: 15px; color: var(--primary-soft); transition: gap .2s var(--ease), color .2s; }
  .svc-more:hover { color: var(--light-indigo); gap: 10px; }

  /* ===== Subsida: enkel innehålls-rubrik ===== */
  .subpage-hero { padding-top: 150px; }

  .section-pad { padding: 110px 0; }
  .section-head { max-width: 680px; margin-bottom: 56px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head h2 { font-size: clamp(30px, 4.6vw, 48px); margin: 18px 0 16px; }
  .section-head p { font-size: 18px; color: var(--muted); }

  /* HERO (always dark zone) */
  .hero { position: relative; margin-top: -72px; padding: 152px 0 96px; overflow: hidden; background: #0B0B0F; color: #fff; }
  #shader { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
  .hero-fallback { position: absolute; inset: 0; z-index: 0; background: radial-gradient(600px 420px at 78% 6%, rgba(79,70,229,0.30), transparent 70%), radial-gradient(520px 380px at 10% 36%, rgba(99,102,241,0.14), transparent 70%); }
  .hero-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(820px 300px at 50% -50px, rgba(99,102,241,0.22), transparent 70%), radial-gradient(120% 120% at 50% 0%, transparent 55%, rgba(11,11,15,0.85)); }
  .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .hero .eyebrow { color: #cfcfe0; border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }
  .hero h1 { font-size: clamp(38px, 5.8vw, 64px); font-weight: 400; margin: 22px 0 20px; color: #fff; transform-style: preserve-3d; will-change: transform; }
  .hero h1 .hl { color: transparent; background: linear-gradient(120deg, #fff 30%, #8b8bff); -webkit-background-clip: text; background-clip: text; }
  @keyframes blurIn { from { opacity: 0; filter: blur(16px); } to { opacity: 1; filter: blur(0); } }
  .hero h1.blur-in { animation: blurIn 1.1s var(--ease) both; }
  .hero-sub { font-size: 19px; color: #b6b6c8; max-width: 520px; margin-bottom: 26px; }
  .trust-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
  .trust-list li { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 500; color: #fff; }
  .check { width: 22px; height: 22px; flex: none; border-radius: 50%; background: rgba(99,102,241,0.16); display: grid; place-items: center; }
  .check svg { width: 13px; height: 13px; stroke: var(--accent); }
  .countup { font-variant-numeric: tabular-nums; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

  .visual { position: relative; perspective: 1400px; }
  .browser { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.14); background: linear-gradient(180deg, #16161f, #0e0e15); box-shadow: var(--shadow), var(--shadow-glow); overflow: hidden; transform: rotateY(-8deg) rotateX(4deg); transition: transform .5s var(--ease); }
  .browser-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #2c2c38; display: block; }
  .browser-url { margin-left: 12px; font-size: 12px; color: #6e6e80; background: #0B0B0F; padding: 5px 12px; border-radius: 7px; flex: 1; font-family: 'JetBrains Mono', monospace; }
  .browser-body { position: relative; aspect-ratio: 16/10; background: #0e0e15; }
  .browser-body video, .browser-body img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .browser-poster { position: absolute; inset: 0; padding: 22px; }
  .mini-hero { height: 14px; width: 62%; border-radius: 5px; background: linear-gradient(90deg, var(--primary-soft), var(--primary)); margin-bottom: 9px; }
  .mini-line { height: 9px; border-radius: 4px; background: rgba(255,255,255,0.10); margin-bottom: 8px; }
  .mini-line.w1 { width: 88%; } .mini-line.w2 { width: 70%; }
  .mini-row { display: flex; gap: 10px; margin: 16px 0; }
  .mini-card { flex: 1; height: 48px; border-radius: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
  .mini-btn { height: 28px; width: 120px; border-radius: 8px; background: var(--accent); margin-top: 4px; }

  .chart-card { position: absolute; bottom: -26px; left: -26px; width: 220px; background: rgba(20,20,28,0.92); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); animation: floaty 5s ease-in-out infinite; z-index: 3; }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
  .chart-card .label { font-size: 12px; color: #b6b6c8; display: flex; align-items: center; gap: 6px; }
  .chart-card .value { font-family: 'Inter Tight'; font-size: 24px; font-weight: 700; margin: 4px 0 8px; color: #fff; }
  .chart-card .value .up { color: var(--accent); font-size: 14px; }
  .spark { width: 100%; height: 42px; display: block; }
  .pulse { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; animation: pulse 2s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5);} 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0);} 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);} }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 70px; } .browser { transform: none; } .chart-card { left: auto; right: 0; } }

  /* marquee */
  /* ---------- Holographic Velocity Marquee ---------- */
  .proof { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg), var(--bg-soft), var(--bg)); overflow: hidden; perspective: 1200px; }
  .proof-label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-dim); margin-bottom: 32px; }
  .marquee-3d { position: relative; transform-style: preserve-3d; transform: rotateX(4deg) rotateY(-2deg); transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
  .marquee-3d:hover { transform: rotateX(2deg) rotateY(0deg); }
  .marquee-layer { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
  .layer-back { opacity: 0.35; transform: translateZ(-40px) scale(0.92); filter: blur(1px); }
  .layer-front { position: relative; z-index: 2; margin-top: -52px; }
  .marquee-track { display: flex; gap: 56px; padding-right: 56px; animation: marqueeScroll 18s linear infinite; will-change: transform; }
  .marquee-layer:hover .marquee-track { animation-play-state: paused; }
  @keyframes marqueeScroll { to { transform: translateX(-50%); } }
  .logo-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; color: var(--muted); font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 17px; padding: 10px 18px; border-radius: 12px; background: var(--glass); border: 1px solid var(--line); transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1); cursor: default; position: relative; }
  .logo-item::before { content: ''; position: absolute; inset: -2px; border-radius: 14px; background: linear-gradient(135deg, var(--item-glow, #6366F1), transparent 60%); opacity: 0; transition: opacity 0.4s ease; z-index: -1; filter: blur(8px); }
  .logo-item:hover { color: var(--text); background: color-mix(in srgb, var(--bg-card) 80%, transparent); border-color: var(--item-glow, var(--line-strong)); transform: translateZ(30px) scale(1.08); box-shadow: 0 0 30px -8px var(--item-glow, #6366F1); }
  .logo-item:hover::before { opacity: 0.6; }
  .logo-item .glyph { width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--text); background: var(--glass); transition: all 0.3s ease; box-shadow: 0 0 0 0 var(--item-glow, transparent); }
  .logo-item:hover .glyph { background: var(--item-glow, var(--glass)); border-color: var(--item-glow, var(--line-strong)); box-shadow: 0 0 16px -4px var(--item-glow, #6366F1); color: #fff; }
  body.neon .logo-item .glyph { animation: neonGlyphPulse 2s ease-in-out infinite; }
  @keyframes neonGlyphPulse { 0%, 100% { box-shadow: 0 0 0 0 var(--item-glow); } 50% { box-shadow: 0 0 20px -2px var(--item-glow); } }
  body.neon .logo-item { border-color: var(--item-glow); }
  @media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .logo-item:hover { transform: scale(1.02); } }
  @media (max-width: 768px) { .marquee-3d { transform: rotateX(2deg) rotateY(0deg); } .layer-back { display: none; } .layer-front { margin-top: 0; } .marquee-track { animation-duration: 14s; } }

  /* ---------- Problem – Pain → Gain (3D-flip) ---------- */
  .problem-sec { position: relative; overflow: hidden; }
  .glitch-text { position: relative; }
  .glitch-text::before, .glitch-text::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; }
  .glitch-text.active::before { animation: glitch1 .34s linear; color: #ef4444; -webkit-text-fill-color: #ef4444; z-index: -1; }
  .glitch-text.active::after { animation: glitch2 .34s linear; color: #6366F1; -webkit-text-fill-color: #6366F1; z-index: -2; }
  @keyframes glitch1 { 0%,100% { opacity:0; transform: translate(0); } 20% { opacity:.8; transform: translate(-2px,2px); } 40% { opacity:.8; transform: translate(2px,-2px); } 60% { opacity:0; transform: translate(0); } }
  @keyframes glitch2 { 0%,100% { opacity:0; transform: translate(0); } 20% { opacity:.8; transform: translate(2px,-2px); } 40% { opacity:.8; transform: translate(-2px,2px); } 60% { opacity:0; transform: translate(0); } }
  .problem-stack { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin: 48px auto 0; perspective: 1000px; }
  .problem-card { height: 72px; perspective: 1000px; opacity: 0; transform: translateX(-60px) rotateY(-15deg); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .problem-card.in { opacity: 1; transform: translateX(0) rotateY(0); }
  .problem-card:nth-child(1){transition-delay:.1s} .problem-card:nth-child(2){transition-delay:.25s} .problem-card:nth-child(3){transition-delay:.4s} .problem-card:nth-child(4){transition-delay:.55s} .problem-card:nth-child(5){transition-delay:.7s}
  .problem-inner { position: relative; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.22,1,.36,1); transform-style: preserve-3d; }
  .problem-card:hover .problem-inner, .problem-card.flipped .problem-inner { transform: rotateX(180deg); }
  .problem-front, .problem-back { position: absolute; inset: 0; display: flex; align-items: center; gap: 16px; padding: 18px 24px; border-radius: 16px; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
  .problem-front { background: var(--bg-card); border: 1px solid var(--line); transition: border-color .3s, box-shadow .3s; }
  .problem-card:hover .problem-front { border-color: rgba(239,68,68,0.4); box-shadow: 0 0 30px -10px rgba(239,68,68,0.2); }
  .problem-back { background: linear-gradient(135deg, rgba(99,102,241,0.08), var(--bg-card)); border: 1px solid rgba(99,102,241,0.3); transform: rotateX(180deg); box-shadow: 0 0 30px -10px rgba(99,102,241,0.25); }
  .problem-icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; font-weight: 700; flex: none; transition: all .4s ease; }
  .problem-front .problem-icon { background: rgba(239,68,68,0.12); color: #ef4444; }
  .problem-back .problem-icon { background: rgba(99,102,241,0.15); color: #6366F1; box-shadow: 0 0 16px -4px rgba(99,102,241,0.4); }
  .problem-text { font-size: 18px; font-weight: 600; transition: color .3s; }
  .problem-front .problem-text { color: var(--text); }
  .problem-back .problem-text { color: #6366F1; }
  .problem-solution { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .problem-solution.in { opacity: 1; transform: translateY(0); }
  .solution-line { height: 1px; width: 0; background: linear-gradient(90deg, transparent, var(--accent), transparent); transition: width .8s var(--ease) .2s; }
  .problem-solution.in .solution-line { width: 80px; }
  .solution-text { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); white-space: nowrap; }
  .solution-accent { color: var(--accent); text-shadow: 0 0 20px rgba(99,102,241,0.4); }
  body.neon .problem-back { border-color: #22ffa7; box-shadow: 0 0 40px -10px rgba(34,255,167,0.3); }
  body.neon .problem-back .problem-icon { box-shadow: 0 0 20px -2px #22ffa7; }
  body.neon .solution-accent { text-shadow: 0 0 30px rgba(34,255,167,0.6); }
  @media (prefers-reduced-motion: reduce) { .problem-card { transform: none; opacity: 1; } .problem-inner { transition: none; } .glitch-text::before, .glitch-text::after { display: none; } }
  @media (max-width: 560px) { .problem-card { height: 64px; } .problem-front, .problem-back { padding: 14px 18px; } .problem-text { font-size: 16px; } .solution-text { font-size: 18px; } }

  /* services – breda kort med bildbakgrund */
  .svc-wide-list { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
  .svc-wide { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-card); aspect-ratio: 1376 / 768; display: flex; align-items: center; isolation: isolate; transition: transform .35s var(--ease), border-color .3s, box-shadow .3s; }
  .svc-wide-bg { position: absolute; inset: 0; z-index: 0; background-image: var(--svc-img); background-size: cover; background-position: right center; transition: transform .7s var(--ease); }
  .svc-wide:hover .svc-wide-bg { transform: scale(1.06); }
  .svc-wide-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(11,11,15,0.95) 0%, rgba(11,11,15,0.84) 30%, rgba(11,11,15,0.4) 62%, rgba(11,11,15,0.05) 100%); }
  .svc-wide:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 26px 64px -26px rgba(79,70,229,0.5); }
  .svc-wide-content { position: relative; z-index: 2; padding: 40px 46px; max-width: 56%; }
  .svc-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(79,70,229,0.28), rgba(79,70,229,0.08)); border: 1px solid var(--line-strong); display: grid; place-items: center; margin-bottom: 18px; }
  .svc-icon svg { width: 22px; height: 22px; stroke: var(--primary-soft); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .svc-wide h3 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 10px; line-height: 1.05; }
  .svc-wide .desc { font-size: 16px; color: var(--muted); margin-bottom: 14px; max-width: 440px; line-height: 1.55; }
  .svc-feats { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
  .svc-feats li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--text); opacity: .92; }
  .svc-feats li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--light-indigo); }
  .svc-wide[data-accent="green"] .svc-feats li::before { color: var(--accent); }
  .svc-benefit { font-size: 14px; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 7px; }
  .svc-wide[data-accent="green"]:hover { border-color: rgba(99,102,241,0.4); box-shadow: 0 26px 64px -26px rgba(99,102,241,0.5); }
  .svc-wide[data-accent="green"] .svc-icon { background: linear-gradient(135deg, rgba(99,102,241,0.28), rgba(99,102,241,0.08)); }
  .svc-wide[data-accent="green"] .svc-icon svg { stroke: var(--accent); }
  @media (max-width: 768px) {
    .svc-wide { aspect-ratio: auto; min-height: 440px; }
    .svc-wide-content { max-width: 100%; padding: 28px 24px; }
    .svc-wide-overlay { background: linear-gradient(180deg, rgba(11,11,15,0.55) 0%, rgba(11,11,15,0.88) 100%); }
    .svc-wide-bg { background-position: center; }
    .svc-wide .desc { max-width: 100%; }
  }

  /* style switcher */
  .switch-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
  @media (max-width: 900px) { .switch-grid { grid-template-columns: 1fr; gap: 36px; } }
  .switch-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
  .switch-tab { padding: 10px 18px; border-radius: 100px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--muted); font-family: 'Inter Tight'; font-weight: 600; font-size: 15px; cursor: pointer; transition: all .25s var(--ease); }
  .switch-tab.active { color: #fff; border-color: transparent; }
  .switch-preview { border-radius: var(--radius-lg); border: 1px solid var(--line-strong); overflow: hidden; box-shadow: var(--shadow); transition: background .5s var(--ease); }
  .sp-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.25); }
  .sp-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); }
  .sp-body { padding: 34px; color: #fff; min-height: 230px; transition: background .5s var(--ease); }
  .sp-tag { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: .8; }
  .sp-h { font-size: clamp(24px,3.4vw,34px); font-weight: 800; margin: 10px 0 14px; line-height: 1.1; transition: font-family .3s; }
  .sp-p { opacity: .82; max-width: 380px; margin-bottom: 18px; }
  .sp-btn { display: inline-block; padding: 11px 22px; border-radius: 10px; font-weight: 600; }

  /* pinned cases */
  .cases-intro { text-align: center; max-width: 680px; margin: 0 auto 10px; }
  .cases-pin { position: relative; }
  .cases-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
  .cases-track { display: flex; gap: 26px; padding: 0 max(24px, calc((100vw - var(--max)) / 2 + 24px)); will-change: transform; }
  .case-card { width: 380px; flex: none; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-card); overflow: hidden; }
  .case-visual { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, rgba(79,70,229,0.20), rgba(99,102,241,0.10)); }
  .case-visual picture { display: block; width: 100%; height: 100%; }
  .case-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
  .case-body { padding: 24px; }
  .case-name { font-family: 'Inter Tight'; font-weight: 700; font-size: 19px; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
  .badge-ex { font-size: 9px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 7px; border-radius: 5px; border: 1px solid var(--line-strong); color: var(--muted-dim); text-transform: uppercase; }
  .case-row { font-size: 14px; color: var(--muted); margin: 9px 0; }
  .case-row b { color: var(--text); font-weight: 600; }
  .case-metrics { display: flex; gap: 10px; margin-top: 18px; }
  .metric { flex: 1; padding: 12px; border-radius: 12px; background: var(--glass); border: 1px solid var(--line); text-align: center; }
  .metric .m-val { font-family: 'Inter Tight'; font-size: 22px; font-weight: 700; color: var(--accent); }
  .metric .m-lbl { font-size: 11px; color: var(--muted-dim); margin-top: 2px; }
  .case-quote { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); font-style: italic; }
  .pin-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); font-size: 13px; color: var(--muted-dim); display: flex; align-items: center; gap: 8px; z-index: 3; }
  .cases-fallback { display: none; }
  @media (max-width: 900px) {
    .cases-pin { height: auto !important; }
    .cases-sticky { position: static; height: auto; display: block; }
    .cases-track { transform: none !important; overflow-x: auto; padding: 0 24px 10px; scroll-snap-type: x mandatory; }
    .case-card { scroll-snap-align: center; width: 300px; }
    .pin-hint { display: none; }
  }

  /* before/after */
  .ba-wrap { max-width: 920px; margin: 0 auto; }
  .ba { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); aspect-ratio: 16/9; user-select: none; touch-action: none; }
  .ba-layer { position: absolute; inset: 0; padding: 34px; }
  .ba-after { background: linear-gradient(160deg, #101018, #0c0c12); }
  .ba-before { background: #14110e; clip-path: inset(0 50% 0 0); }
  .ba-label { position: absolute; top: 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 8px; }
  .ba-before .ba-label { left: 16px; background: rgba(0,0,0,0.5); color: #c9a779; }
  .ba-after .ba-label { right: 16px; background: rgba(99,102,241,0.18); color: var(--accent); }
  .old-h { font-family: Times, serif; color: #d8d2c8; font-size: 26px; margin-bottom: 14px; }
  .old-line { height: 8px; background: #3a342c; border-radius: 2px; margin-bottom: 8px; }
  .old-line.s { width: 70%; } .old-line.s2 { width: 85%; }
  .old-btn { margin-top: 16px; display: inline-block; padding: 8px 16px; background: #5a4f3e; color: #d8d2c8; font-size: 13px; border-radius: 2px; }
  .new-h { font-family: 'Inter Tight'; font-weight: 800; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 12px; color: #fff; }
  .new-h .g { color: #8b8bff; }
  .new-line { height: 9px; border-radius: 5px; background: rgba(255,255,255,0.12); margin-bottom: 9px; }
  .new-line.s { width: 65%; } .new-line.s2 { width: 80%; }
  .new-btn { margin-top: 16px; display: inline-block; padding: 11px 20px; background: linear-gradient(180deg,var(--primary-soft),var(--primary)); color:#fff; font-size: 14px; font-weight: 600; border-radius: 10px; }
  .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-1px); z-index: 5; cursor: ew-resize; }
  .ba-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,0.5); color: #0B0B0F; font-size: 14px; font-weight: 700; }
  .ba-caption { text-align: center; color: var(--muted); margin-top: 18px; font-size: 15px; }

  /* process */

  /* pricing + calculator */
  .calc { max-width: 760px; margin: 0 auto 56px; padding: 30px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--bg-card); }
  .calc h3 { font-size: 20px; margin-bottom: 4px; }
  .calc .sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
  .calc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .calc-row:last-of-type { border-bottom: 0; }
  .calc-label { font-weight: 500; }
  .calc-label small { display: block; color: var(--muted-dim); font-size: 13px; font-weight: 400; }
  .toggle { width: 46px; height: 26px; border-radius: 100px; border: 1px solid var(--line-strong); background: var(--glass); position: relative; cursor: pointer; transition: background .25s; flex: none; }
  .toggle::after { content:''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--muted); transition: transform .25s var(--ease), background .25s; }
  .toggle.on { background: var(--primary); }
  .toggle.on::after { transform: translateX(20px); background: #fff; }
  input[type=range].slider { -webkit-appearance: none; appearance: none; width: 160px; height: 5px; border-radius: 100px; background: var(--line-strong); outline: none; }
  input[type=range].slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: 0 0 0 4px rgba(79,70,229,0.2); }
  input[type=range].slider::-moz-range-thumb { width: 20px; height: 20px; border: 0; border-radius: 50%; background: var(--primary); cursor: pointer; }
  .calc-total { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-strong); }
  .calc-total-l { display: flex; flex-direction: column; gap: 3px; }
  .calc-pkg { font-size: 13px; font-weight: 600; color: var(--primary-soft); }
  .calc-total .lbl { color: var(--muted); }
  .calc-total .amt { font-family: 'Bebas Neue','Inter Tight',sans-serif; font-weight: 400; font-size: 38px; letter-spacing: .01em; }
  .calc-total .amt .kr { font-size: 16px; color: var(--muted); }

  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
  .price-card { padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-card); display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease); }
  .price-card:hover { transform: translateY(-6px); }
  .price-card.featured { border-color: rgba(79,70,229,0.6); background: linear-gradient(180deg, rgba(79,70,229,0.12), var(--bg-card)); box-shadow: var(--shadow-glow); }
  .pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg,var(--primary-soft),var(--primary)); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
  .price-name { font-family: 'Inter Tight'; font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
  .price-amount { font-family: 'Bebas Neue','Inter Tight',sans-serif; font-weight: 400; font-size: 44px; letter-spacing: .01em; }
  .price-amount .kr { font-size: 18px; color: var(--muted); font-weight: 600; }
  .price-desc { font-size: 15px; color: var(--muted); margin: 10px 0 22px; min-height: 44px; }
  .price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
  .price-feats li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
  .price-feats .check { width: 20px; height: 20px; } .price-feats .check svg { width: 12px; height: 12px; }
  .price-card .pkg-open { width: 100%; margin-top: 4px; }
  .price-card[data-pkg] { cursor: pointer; }
  .price-card[data-pkg]:focus-visible { outline: 2px solid var(--primary-soft); outline-offset: 3px; }
  .price-card.selected { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 24px 60px -20px rgba(79,70,229,.5); }

  /* ---- Paket-modal (3D-flip) ---- */
  .pkg-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); perspective: 1700px; }
  .pkg-modal.open { opacity: 1; visibility: visible; }
  .pkg-backdrop { position: absolute; inset: 0; background: rgba(6,6,10,.74); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
  .pkg-flip { position: relative; width: min(560px, 100%); max-height: 88vh; overflow-y: auto; overflow-x: hidden; background: linear-gradient(180deg,#17171f,#0f0f16); border: 1px solid var(--line-strong); border-radius: 24px; padding: 34px 30px 30px; box-shadow: 0 50px 130px -30px rgba(0,0,0,.85); transform: rotateY(-92deg) scale(.9); transform-origin: 50% 50%; opacity: 0; transition: transform .65s cubic-bezier(.16,1,.3,1), opacity .45s ease; will-change: transform, opacity; }
  .pkg-modal.open .pkg-flip { transform: rotateY(0) scale(1); opacity: 1; }
  .pkg-flip::before { content: ''; position: absolute; inset: 0; border-radius: 24px; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(99,102,241,.18) 50%, transparent 70%); background-size: 280% 100%; background-position: 120% 0; }
  .pkg-modal.open .pkg-flip::before { animation: pkgSweep 1.1s ease .35s 1; }
  @keyframes pkgSweep { to { background-position: -120% 0; } }
  .pkg-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: .2s; z-index: 2; }
  .pkg-close:hover { color: #fff; background: rgba(255,255,255,.1); transform: rotate(90deg); }
  .pm-badge { display: inline-block; background: linear-gradient(180deg,var(--primary-soft),var(--primary)); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
  .pm-name { font-family: 'Inter Tight'; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
  .pm-price { font-family: 'Bebas Neue','Inter Tight',sans-serif; font-weight: 400; font-size: 50px; letter-spacing: .01em; line-height: 1; margin: 6px 0 2px; }
  .pm-price span { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
  .pm-desc { color: var(--muted); font-size: 15px; margin: 10px 0 20px; }
  .pm-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0 0 22px; }
  .pm-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.4; }
  .pm-feats .check { flex: 0 0 auto; margin-top: 2px; width: 20px; height: 20px; } .pm-feats .check svg { width: 12px; height: 12px; }
  .pm-addons { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: rgba(255,255,255,.02); margin-bottom: 22px; }
  .pm-addons-h { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .pm-arow { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 7px 0; border-top: 1px solid var(--line); }
  .pm-arow:first-of-type { border-top: none; }
  .pm-arow .ap { color: var(--accent); font-weight: 700; white-space: nowrap; }
  .pm-fine { font-size: 12px; color: #6E6E80; margin-top: 10px; line-height: 1.45; }
  .pm-book { width: 100%; }
  @media (max-width: 768px) { .pm-price { font-size: 36px; } .pkg-flip { padding: 28px 22px 24px; } }
  @media (prefers-reduced-motion: reduce) { .pkg-flip { transition: opacity .3s ease; transform: none; } .pkg-modal.open .pkg-flip { transform: none; } .pkg-flip::before { display: none; } }
  .price-note { text-align: center; margin-top: 28px; color: var(--muted); font-size: 15px; }
  .price-note b { color: var(--text); }

  /* testimonials */
  .tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 900px) { .tst-grid { grid-template-columns: 1fr; } }
  .tst-card { padding: 28px 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-card); display: flex; flex-direction: column; }
  .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); }
  .tst-quote { font-size: 16px; line-height: 1.65; flex: 1; }
  .tst-result { font-family: 'Inter Tight'; font-weight: 600; color: var(--accent); font-size: 15px; margin-top: 16px; }
  .tst-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
  .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: 'Inter Tight'; font-weight: 700; font-size: 16px; color: #fff; flex: none; }
  .tst-meta .nm { font-weight: 600; font-size: 15px; }
  .tst-meta .rl { font-size: 13px; color: var(--muted-dim); }

  /* AI section */
  .ai-sec { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-soft) 0%, #0a0f0c 50%, var(--bg-soft) 100%); }
  .ai-sec .wrap { position: relative; z-index: 1; }
  .ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 900px) { .ai-grid { grid-template-columns: 1fr; gap: 40px; } }
  .chat-demo { border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--bg-card); overflow: hidden; box-shadow: var(--shadow); }
  .chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
  .chat-ava { width: 36px; height: 36px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #8b8bff, #4F46E5 65%); display: grid; place-items: center; color: #fff; font-weight: 700; font-family: 'Inter Tight'; }
  .chat-head .nm { font-weight: 600; font-size: 15px; } .chat-head .st { font-size: 12px; color: var(--accent); display: flex; align-items: center; gap: 5px; }
  .chat-body { padding: 18px; height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
  .msg { max-width: 80%; padding: 11px 15px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; animation: msgIn .4s var(--ease); }
  @keyframes msgIn { from { opacity: 0; transform: translateY(8px); } }
  .msg.bot { align-self: flex-start; background: var(--glass); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
  .msg.user { align-self: flex-end; background: linear-gradient(180deg,var(--primary-soft),var(--primary)); color: #fff; border-bottom-right-radius: 4px; }
  .typing { display: flex; gap: 4px; padding: 14px 16px; }
  .typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
  .typing span:nth-child(2){ animation-delay:.2s } .typing span:nth-child(3){ animation-delay:.4s }
  @keyframes blink { 0%,60%,100%{opacity:.3} 30%{opacity:1} }
  .chat-input { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line); }
  .chat-chip { padding: 8px 13px; border-radius: 100px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--muted); font-size: 13px; cursor: pointer; transition: all .2s; white-space: nowrap; }
  .chat-chip:hover { color: var(--text); border-color: var(--primary); }
  .chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 16px; }
  .ai-badge-demo { font-size: 11px; color: var(--muted-dim); font-family: 'JetBrains Mono', monospace; }

  /* floating chat widget */
  .fab-panel { position: fixed; bottom: 96px; right: 24px; z-index: 9990; width: 350px; max-width: calc(100vw - 32px); border: 1px solid var(--line-strong); border-radius: 20px; background: var(--bg-card); box-shadow: var(--shadow); overflow: hidden; transform: translateY(16px) scale(.96); opacity: 0; pointer-events: none; transition: all .3s var(--ease); }
  .fab-panel.open { transform: none; opacity: 1; pointer-events: auto; }
  .fab-panel .chat-body { height: 300px; }

  /* faq */
  .faq-wrap { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q { width: 100%; background: none; border: 0; color: var(--text); text-align: left; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Inter Tight'; font-weight: 600; font-size: 18px; }
  .faq-icon { flex: none; width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 18px; transition: transform .3s var(--ease), background .2s; }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); border-color: transparent; color: #fff; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
  .faq-a p { padding: 0 0 22px; color: var(--muted); font-size: 16px; }

  /* final + form */
  .final { padding: 110px 0; }
  .final-card { position: relative; overflow: hidden; border-radius: 28px; border: 1px solid var(--line-strong); background: linear-gradient(160deg, rgba(79,70,229,0.16), var(--bg-card) 55%); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .final-card::before { content:''; position:absolute; inset:0; background: radial-gradient(500px 300px at 90% 10%, rgba(99,102,241,0.12), transparent 70%); pointer-events: none; }
  @media (max-width: 860px) { .final-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 34px; } }
  .final-card h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
  .final-card .lead { font-size: 18px; color: var(--muted); }
  .final-bullets { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
  .final-bullets li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; }
  .form-card { position: relative; z-index: 1; background: var(--bg); border: 1px solid var(--line-strong); border-radius: 18px; padding: 28px; }
  .form-card h3 { font-size: 20px; margin-bottom: 4px; }
  .form-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
  .field { margin-bottom: 14px; }
  .field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
  .field input, .field textarea { width: 100%; background: var(--bg-card); border: 1px solid var(--line-strong); color: var(--text); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s; }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--primary-soft); box-shadow: 0 0 0 3px rgba(79,70,229,0.2); }
  .field textarea { resize: vertical; min-height: 84px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 460px) { .form-row { grid-template-columns: 1fr; } }
  .form-submit { width: 100%; margin-top: 6px; }
  .form-fine { text-align: center; font-size: 12px; color: var(--muted-dim); margin-top: 18px; }
  .form-success { display: none; text-align: center; padding: 30px 10px; }
  .form-success.show { display: block; }
  .form-success .tick { width: 56px; height: 56px; border-radius: 50%; background: rgba(99,102,241,0.15); display: grid; place-items: center; margin: 0 auto 16px; }
  .form-success .tick svg { width: 28px; height: 28px; stroke: var(--accent); }
  .form-success h3 { font-size: 20px; margin-bottom: 8px; }
  .form-success p { color: var(--muted); font-size: 15px; }
  .err { border-color: #ef4444 !important; }
  .form-error { display: none; text-align: center; font-size: 13px; color: #ef4444; margin-top: 10px; }
  .form-error.show { display: block; }
  #confetti { position: fixed; inset: 0; pointer-events: none; z-index: 9995; }

  /* footer – se Terminal Boot-block längst ner */
  .foot-socials { display: flex; gap: 10px; }
  .foot-socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--muted); transition: color .2s, border-color .2s; }
  .foot-socials a:hover { color: var(--text); border-color: rgba(120,120,160,0.5); }
  .foot-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-dim); font-size: 13px; }

  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }

  @media (max-width: 768px) {
    .section-pad { padding: 64px 0; }
    .section-head { margin-bottom: 38px; }
    .hero { padding: 112px 0 64px; margin-top: -64px; }
    .final { padding: 64px 0; }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 18px; }
    .hero h1 { font-size: clamp(30px, 8.5vw, 42px); }
    .hero-sub { font-size: 17px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .section-head h2 { font-size: clamp(26px, 7.5vw, 34px); }
    .section-head p { font-size: 16px; }
    .chart-card { width: 178px; padding: 13px; left: auto; right: 0; bottom: -18px; }
    .chart-card .value { font-size: 20px; }
    .calc { padding: 22px; }
    .calc-row { gap: 12px; }
    input[type=range].slider { width: 116px; }
    .final-card h2 { font-size: clamp(26px, 7vw, 36px); }
    .price-amount { font-size: 34px; }
    .fab-panel { bottom: 80px; right: 16px; }
    .btn { padding: 14px 22px; }
  }
  @media (max-width: 380px) {
    .hero h1 { font-size: 29px; }
    .logo { font-size: 17px; }
  }

  /* preloader */
  #preloader { position: fixed; inset: 0; z-index: 100000; background: var(--bg); display: grid; place-items: center; transition: transform .7s var(--ease), opacity .5s ease; }
  #preloader.done { transform: translateY(-100%); opacity: 0; pointer-events: none; }
  #preloader svg { filter: drop-shadow(0 0 26px rgba(79,70,229,.6)); }
  #preloader .pl-p { stroke-dasharray: 210; stroke-dashoffset: 210; animation: plDraw 0.5s var(--ease) forwards; }
  #preloader .pl-p:nth-child(2) { animation-delay: .2s; }
  @keyframes plDraw { to { stroke-dashoffset: 0; } }
  /* namn-generator */
  .biz-name { margin-top: 14px; width: 100%; max-width: 360px; background: var(--bg-card); border: 1px solid var(--line-strong); color: var(--text); border-radius: 12px; padding: 13px 16px; font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s; }
  .biz-name:focus { outline: none; border-color: var(--primary-soft); box-shadow: 0 0 0 3px rgba(79,70,229,.2); }
  .sp-brand { font-family: 'Inter Tight'; font-weight: 800; font-size: 15px; letter-spacing: -.02em; margin-bottom: 12px; opacity: 0; transform: translateY(-4px); transition: opacity .3s, transform .3s; }
  .sp-brand.show { opacity: .95; transform: none; }
  /* neon easter egg */
  body.neon { --primary: #a855f7; --primary-soft: #c084fc; --accent: #22ffa7; }
  body.neon h1, body.neon h2 { text-shadow: 0 0 18px rgba(168,85,247,.55); }
  body.neon .btn-primary { box-shadow: 0 0 30px rgba(168,85,247,.8); }
  body.neon .svc-wide, body.neon .price-card, body.neon .case-card, body.neon .tst-card { box-shadow: 0 0 24px -4px rgba(34,255,167,.4); }
  body.neon .logo-mark svg { filter: drop-shadow(0 0 9px #c084fc); }
  body.neon .eyebrow .dot { box-shadow: 0 0 14px #22ffa7; }
  .egg-toast { position: fixed; left: 50%; bottom: 92px; transform: translateX(-50%) translateY(20px); background: linear-gradient(135deg,#a855f7,#22ffa7); color: #0a210f; font-family: 'Inter Tight'; font-weight: 700; padding: 12px 22px; border-radius: 100px; box-shadow: 0 12px 30px rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease); z-index: 99999; }
  .egg-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  /* cookiebanner */
  #cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 99990; max-width: 580px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--line-strong); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: 14px; transform: translateY(140%); transition: transform .5s var(--ease); }
  #cookie-banner.show { transform: none; }
  #cookie-banner p { color: var(--muted); flex: 1; min-width: 220px; margin: 0; }
  #cookie-banner a { color: var(--primary-soft); text-decoration: underline; }
  #cookie-banner .cb-actions { display: flex; gap: 10px; }
  #cookie-banner .btn { padding: 9px 16px; font-size: 14px; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    body.has-cursor { cursor: auto; }
  }

  /* ===== FAS X – WOW ===== */
  /* Iridescent hover (kort) */
  .iridescent { position: relative; }
  .iridescent::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.15), rgba(99,102,241,0.10) 40%, rgba(99,102,241,0.08) 60%, transparent 80%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 1; mix-blend-mode: overlay; }
  .iridescent:hover::before { opacity: 1; }
  .iridescent::after { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: conic-gradient(from var(--ang,0deg) at var(--mx,50%) var(--my,50%), #6366F1, #A855F7, #6366F1); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 2; }
  .iridescent:hover::after { opacity: 0.6; animation: sheenRotate 3s linear infinite; }
  @keyframes sheenRotate { to { --ang: 360deg; } }

  /* Kinetic hero (rubrik faller på plats) */
  .kinetic-hero { perspective: 800px; }
  .k-line { display: block; opacity: 0; transform: translateY(-60px) rotateX(-40deg); transform-origin: center bottom; animation: kineticDrop 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  .k-line:nth-child(1) { animation-delay: 0.2s; }
  .k-line:nth-child(2) { animation-delay: 0.4s; }
  .k-line:nth-child(3) { animation-delay: 0.6s; }
  .kinetic-hero.typed .k-line { opacity: 1; transform: none; animation: none; filter: none; }
  .kinetic-hero.typed .tc { visibility: hidden; position: relative; }
  .kinetic-hero.typed .tc.on { visibility: visible; }
  .kinetic-hero.typed .hl, .kinetic-hero.typed .hl .tc { color: #8b8bff; -webkit-text-fill-color: #8b8bff; background: none; }
  .kinetic-hero.typed .tc.cursor::after { content: ''; position: absolute; right: -0.06em; top: 10%; height: 80%; width: 3px; background: #8b8bff; border-radius: 2px; box-shadow: 0 0 10px rgba(139,139,255,0.8); animation: caretBlink 1.05s steps(1) infinite; }
  @keyframes caretBlink { 50% { opacity: 0; } }
  @keyframes kineticDrop { 0% { opacity: 0; transform: translateY(-60px) rotateX(-40deg) scale(0.8); filter: blur(8px); } 60% { opacity: 1; transform: translateY(4px) rotateX(2deg) scale(1.02); filter: blur(0); } 100% { opacity: 1; transform: translateY(0) rotateX(0) scale(1); filter: blur(0); } }

  /* Ambient grid (mus-följande punkt-grid) */
  .ambient-grid { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
  .ambient-grid::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(99,102,241,0.15) 1px, transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(400px circle at var(--gx,50%) var(--gy,50%), black 20%, transparent 70%); mask-image: radial-gradient(400px circle at var(--gx,50%) var(--gy,50%), black 20%, transparent 70%); opacity: 0.4; }
  :root[data-theme="light"] .ambient-grid::before { background-image: radial-gradient(circle, rgba(79,70,229,0.08) 1px, transparent 1px); opacity: 0.6; }
  body.neon .ambient-grid::before { background-image: radial-gradient(circle, rgba(168,85,247,0.2) 1px, transparent 1px); }

  @media (prefers-reduced-motion: reduce) {
    .k-line { opacity: 1; transform: none; animation: none; filter: none; }
    .iridescent:hover::after { animation: none; }
  }

  /* ---------- AI Section – Terminal Theme ---------- */
  .ai-terminal-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  .ai-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%); mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%); }
  .ai-scan-line { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(34,197,94,0.6), transparent); box-shadow: 0 0 20px rgba(34,197,94,0.3); animation: scanMove 5s ease-in-out infinite; }
  @keyframes scanMove { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
  .ai-neon { color: #22C55E; -webkit-text-fill-color: #22C55E; text-shadow: 0 0 20px rgba(34,197,94,0.4), 0 0 40px rgba(34,197,94,0.2); }
  .chat-demo.ai-terminal { background: linear-gradient(135deg, rgba(11,15,12,0.96), rgba(20,28,22,0.98)); border: 1px solid rgba(34,197,94,0.18); box-shadow: 0 0 0 1px rgba(34,197,94,0.08), 0 20px 60px -20px rgba(0,0,0,0.8), 0 0 60px -30px rgba(34,197,94,0.15); }
  .terminal-header { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid rgba(34,197,94,0.12); background: rgba(0,0,0,0.3); }
  .terminal-dots { display: flex; gap: 6px; flex: none; }
  .terminal-dots span { width: 10px; height: 10px; border-radius: 50%; }
  .terminal-dots span:nth-child(1) { background: #ef4444; }
  .terminal-dots span:nth-child(2) { background: #f59e0b; }
  .terminal-dots span:nth-child(3) { background: #22C55E; }
  .terminal-title { flex: 1; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(34,197,94,0.75); letter-spacing: 0.05em; }
  .terminal-status { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #22C55E; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
  .terminal-input { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-top: 1px solid rgba(34,197,94,0.12); background: rgba(0,0,0,0.2); }
  .terminal-prompt { color: #22C55E; font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700; flex: none; }
  .terminal-input input { flex: 1; background: transparent; border: none; color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: 14px; outline: none; min-width: 0; }
  .terminal-input input::placeholder { color: var(--muted-dim); }
  .terminal-send { width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(34,197,94,0.3); background: rgba(34,197,94,0.1); display: grid; place-items: center; cursor: pointer; transition: all .3s ease; flex: none; }
  .terminal-send:hover { background: rgba(34,197,94,0.2); box-shadow: 0 0 20px -4px rgba(34,197,94,0.4); }
  .terminal-send svg { width: 16px; height: 16px; }
  /* avatar-preview i bot-bubblan (K1) */
  .ai-terminal .chat-body .msg.bot, .ai-chat-panel .chat-body .msg.bot { margin-left: 34px; position: relative; }
  .ai-terminal .chat-body .msg.bot::before, .ai-chat-panel .chat-body .msg.bot::before { content: 'A'; position: absolute; left: -34px; top: 0; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #22C55E, #15803d); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; font-family: 'Inter Tight', sans-serif; box-shadow: 0 0 12px -2px rgba(34,197,94,0.5); }

  /* ---------- AI Brain Orb (FAB) ---------- */
  .ai-orb-container { position: fixed; bottom: 24px; right: 24px; z-index: 9990; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; }
  .ai-orb-container:focus-visible { outline: 2px solid #22C55E; outline-offset: 6px; border-radius: 12px; }
  .ai-orb { position: relative; width: 64px; height: 64px; display: grid; place-items: center; }
  .ai-orb-core { width: 24px; height: 24px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #22ffa7, #22C55E, #15803d); box-shadow: 0 0 20px 4px rgba(34,197,94,0.4), 0 0 40px 8px rgba(34,197,94,0.2), inset 0 0 10px rgba(255,255,255,0.3); animation: orbPulse 3s ease-in-out infinite; position: relative; z-index: 2; }
  @keyframes orbPulse { 0%,100% { transform: scale(1); box-shadow: 0 0 20px 4px rgba(34,197,94,0.4), 0 0 40px 8px rgba(34,197,94,0.2); } 50% { transform: scale(1.1); box-shadow: 0 0 30px 8px rgba(34,197,94,0.6), 0 0 60px 16px rgba(34,197,94,0.3); } }
  .ai-orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(34,197,94,0.3); pointer-events: none; }
  .ring-1 { width: 48px; height: 48px; animation: ringSpin 6s linear infinite; }
  .ring-2 { width: 56px; height: 56px; border-style: dashed; animation: ringSpin 8s linear infinite reverse; opacity: 0.5; }
  .ring-3 { width: 72px; height: 72px; border: 1px solid rgba(34,197,94,0.12); animation: ringSpin 12s linear infinite; }
  @keyframes ringSpin { to { transform: rotate(360deg); } }
  .ai-orb-particles { position: absolute; inset: -20px; pointer-events: none; }
  .ai-orb-particles::before, .ai-orb-particles::after { content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #22C55E; left: 50%; animation: particleFloat 4s ease-in-out infinite; }
  .ai-orb-particles::before { top: 0; transform: translateX(-50%); animation-delay: 0s; }
  .ai-orb-particles::after { bottom: 0; transform: translateX(-50%); animation-delay: 2s; }
  @keyframes particleFloat { 0%,100% { opacity: 0; transform: translateX(-50%) scale(0); } 50% { opacity: 1; transform: translateX(-50%) scale(1); } }
  .ai-orb-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #22C55E; text-shadow: 0 0 10px rgba(34,197,94,0.5); opacity: 0; transform: translateY(4px); transition: all .3s ease; pointer-events: none; }
  .ai-orb-container:hover .ai-orb-label, .ai-orb-container:focus-visible .ai-orb-label { opacity: 1; transform: translateY(0); }
  .ai-orb-container:hover .ai-orb-core { animation: orbPulseHover 1.5s ease-in-out infinite; }
  @keyframes orbPulseHover { 0%,100% { transform: scale(1.15); } 50% { transform: scale(1.3); } }
  body.neon .ai-orb-core { background: radial-gradient(circle at 30% 30%, #22ffa7, #22ffa7, #16a34a); box-shadow: 0 0 30px 8px rgba(34,255,167,0.6), 0 0 60px 16px rgba(34,255,167,0.3); }

  /* ---------- AI Chat Panel (grön) ---------- */
  .ai-chat-panel { background: linear-gradient(135deg, rgba(11,15,12,0.98), rgba(20,28,22,0.99)); border: 1px solid rgba(34,197,94,0.2); box-shadow: 0 24px 60px -20px rgba(0,0,0,0.9), 0 0 60px -30px rgba(34,197,94,0.2); }
  .ai-chat-close { margin-left: 4px; width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line); background: var(--glass); color: var(--muted); display: grid; place-items: center; cursor: pointer; font-size: 18px; line-height: 1; transition: all .2s; flex: none; }
  .ai-chat-close:hover { border-color: #ef4444; color: #ef4444; }

  @media (max-width: 560px) { .ai-orb { width: 54px; height: 54px; } .ai-orb-core { width: 20px; height: 20px; } .ring-3 { width: 64px; height: 64px; } }
  @media (prefers-reduced-motion: reduce) { .ai-orb-core, .ai-orb-ring, .ai-orb-particles::before, .ai-orb-particles::after, .ai-scan-line { animation: none; } .ai-scan-line { opacity: 0; } }

  /* ---------- Process – Pipeline (indigo) ---------- */
  .process-sec { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg), #0a0a14, var(--bg)); }
  .process-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  .process-sec .wrap { position: relative; z-index: 1; }
  .process-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(99,102,241,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.025) 1px, transparent 1px); background-size: 80px 80px; -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
  .process-headline { margin: 18px 0 16px; }
  .process-neon { color: #818cf8; -webkit-text-fill-color: #818cf8; text-shadow: 0 0 20px rgba(99,102,241,0.45); }
  .pipeline { position: relative; max-width: 820px; margin: 64px auto 0; padding: 0 24px; }
  .pipeline-track { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; transform: translateX(-50%); background: rgba(99,102,241,0.10); border-radius: 2px; overflow: hidden; }
  .pipeline-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: linear-gradient(180deg, #4F46E5, #818cf8, #4F46E5); box-shadow: 0 0 20px rgba(99,102,241,0.5); transition: height 0.12s linear; }
  .pipeline-fill::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent); filter: blur(4px); }
  .pipeline-stations { position: relative; z-index: 2; display: flex; flex-direction: column; }
  .station { position: relative; display: grid; grid-template-columns: 1fr 64px 1fr; gap: 36px; align-items: center; padding: 36px 0; opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
  .station-orb { grid-column: 2; grid-row: 1; }
  .station-card { grid-column: 3; grid-row: 1; }
  .station:nth-child(even) { transform: translateX(40px); }
  .station:nth-child(even) .station-card { grid-column: 1; }
  .station:nth-child(even) .station-glass { text-align: right; }
  .station.in { opacity: 1; transform: translateX(0); }
  .station:nth-child(1){transition-delay:.05s} .station:nth-child(2){transition-delay:.12s} .station:nth-child(3){transition-delay:.19s} .station:nth-child(4){transition-delay:.26s} .station:nth-child(5){transition-delay:.33s}
  .station-orb { position: relative; width: 64px; height: 64px; flex: none; }
  .orb-core { position: absolute; inset: 0; border-radius: 50%; background: var(--bg-card); border: 2px solid rgba(99,102,241,0.25); display: grid; place-items: center; font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 800; color: var(--muted); transition: all 0.6s ease; z-index: 2; }
  .orb-liquid { position: absolute; inset: 4px; border-radius: 50%; background: linear-gradient(135deg, #4F46E5, #818cf8); transform: scale(0); transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 1; }
  .orb-ring { position: absolute; inset: -8px; border-radius: 50%; border: 1px solid rgba(99,102,241,0.15); opacity: 0; transition: all 0.6s ease; }
  .station.active .orb-core { color: #fff; border-color: #6366F1; background: transparent; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
  .station.active .orb-liquid { transform: scale(1); }
  .station.active .orb-ring { opacity: 1; animation: orbRingPulse 2s ease-in-out infinite; }
  @keyframes orbRingPulse { 0%,100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.15); opacity: 0.6; } }
  .station-card { max-width: 400px; }
  .station:nth-child(even) .station-card { justify-self: end; }
  .station-glass { padding: 26px; border-radius: 20px; background: linear-gradient(135deg, rgba(20,20,28,0.8), rgba(15,15,22,0.9)); border: 1px solid rgba(99,102,241,0.10); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transition: all 0.5s ease; position: relative; overflow: hidden; }
  .station-glass::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(99,102,241,0.35), transparent); opacity: 0; transition: opacity 0.5s; }
  .station.active .station-glass { border-color: rgba(99,102,241,0.25); box-shadow: 0 0 40px -15px rgba(99,102,241,0.2); }
  .station.active .station-glass::before { opacity: 1; }
  .station-glass h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); transition: color 0.4s; }
  .station.active .station-glass h3 { color: #818cf8; text-shadow: 0 0 15px rgba(99,102,241,0.3); }
  .station-glass p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
  .station-meta { display: inline-block; font-size: 12px; font-weight: 600; color: #818cf8; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 100px; background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.18); }
  .process-particles { position: absolute; inset: 0; pointer-events: none; }
  .particle { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: #6366F1; opacity: 0; animation: particleFloatUp 4s ease-in-out infinite; }
  @keyframes particleFloatUp { 0% { opacity: 0; transform: translateY(0) scale(0); } 20% { opacity: 0.6; } 80% { opacity: 0.6; } 100% { opacity: 0; transform: translateY(-100px) scale(1); } }
  body.neon .pipeline-fill { background: linear-gradient(180deg, #818cf8, #a855f7, #818cf8); box-shadow: 0 0 30px rgba(168,85,247,0.6); }
  body.neon .station-meta { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.3); color: #c4b5fd; }
  body.neon .station.active .station-glass h3 { color: #c4b5fd; }
  @media (prefers-reduced-motion: reduce) { .station { opacity: 1; transform: none; } .orb-liquid { transform: scale(1); } .particle { animation: none; } }
  @media (max-width: 768px) {
    .pipeline { max-width: 100%; padding: 0 4px; }
    .pipeline-track { left: 32px; transform: none; }
    .station, .station:nth-child(even) { grid-template-columns: 56px 1fr; gap: 18px; transform: translateX(-24px); }
    .station.in { transform: translateX(0); }
    .station-orb { grid-column: 1; width: 56px; height: 56px; margin-top: 0; }
    .station-card, .station:nth-child(even) .station-card { grid-column: 2; max-width: 100%; justify-self: stretch; }
    .station:nth-child(even) .station-glass { text-align: left; }
    .orb-core { font-size: 20px; }
  }
  @media (max-width: 560px) { .station-glass { padding: 20px; } .station-glass h3 { font-size: 18px; } }

  /* ---------- Footer – Terminal Boot (indigo) ---------- */
  .footer-terminal { position: relative; border-top: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; }
  .terminal-boot { position: relative; max-width: var(--max); margin: 0 auto; padding: 48px 24px 8px; display: flex; flex-direction: column; align-items: flex-start; }
  .boot-screen { font-family: 'JetBrains Mono', monospace; font-size: 14px; line-height: 2; color: #818cf8; max-width: 640px; width: 100%; }
  .boot-line { text-shadow: 0 0 10px rgba(99,102,241,0.25); white-space: pre-wrap; word-break: break-word; }
  .boot-cursor { display: inline-block; color: #818cf8; font-size: 16px; animation: blinkCursor 1s step-end infinite; text-shadow: 0 0 10px rgba(99,102,241,0.6); }
  @keyframes blinkCursor { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
  .boot-progress { width: 100%; max-width: 640px; height: 2px; background: rgba(99,102,241,0.1); border-radius: 1px; margin-top: 20px; overflow: hidden; }
  .boot-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #4F46E5, #818cf8); border-radius: 1px; box-shadow: 0 0 10px rgba(99,102,241,0.4); transition: width 0.25s ease; }
  .footer-content { position: relative; }
  .footer-glow-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, #4F46E5, #818cf8, #4F46E5, transparent); opacity: 0.6; animation: glowLinePulse 3s ease-in-out infinite; }
  @keyframes glowLinePulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.75; } }
  .foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding: 44px 0 36px; }
  .foot-brand { max-width: 320px; }
  .foot-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.6; }
  .foot-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
  .foot-badge { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #818cf8; border: 1px solid rgba(99,102,241,0.2); border-radius: 7px; padding: 5px 9px; display: flex; align-items: center; gap: 6px; background: rgba(99,102,241,0.05); transition: all 0.3s ease; }
  .foot-badge:hover { background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.4); box-shadow: 0 0 12px -4px rgba(99,102,241,0.3); }
  .foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-dim); margin-bottom: 14px; font-weight: 600; }
  .foot-col a, .foot-col span { display: block; color: var(--muted); font-size: 14px; margin-bottom: 9px; transition: color 0.2s, transform 0.2s; }
  .foot-col a:hover { color: var(--text); transform: translateX(4px); }
  .foot-socials { display: flex; gap: 10px; }
  .social-icon { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--muted); transition: all 0.3s ease; background: var(--glass); position: relative; overflow: hidden; }
  .social-icon::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, var(--item-color, #6366F1), transparent 70%); opacity: 0; transition: opacity 0.3s; }
  .social-icon:hover::before { opacity: 0.15; }
  .social-icon:hover { color: var(--text); border-color: var(--item-color, var(--line-strong)); transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px -8px rgba(0,0,0,0.3); }
  .social-icon:nth-child(1) { --item-color: #E4405F; }
  .social-icon:nth-child(2) { --item-color: #0A66C2; }
  .social-icon:nth-child(3) { --item-color: #1877F2; }
  .foot-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-dim); font-size: 13px; }
  .footer-matrix-hint { cursor: pointer; transition: color 0.3s, text-shadow 0.3s; opacity: 0.5; user-select: none; }
  .footer-matrix-hint:hover { color: #818cf8; opacity: 1; text-shadow: 0 0 10px rgba(99,102,241,0.6); }
  .matrix-rain { position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0; transition: opacity 0.5s; }
  .matrix-rain.active { opacity: 0.16; }
  body.neon .boot-line { color: #c4b5fd; text-shadow: 0 0 15px rgba(168,85,247,0.5); }
  body.neon .boot-cursor { color: #c4b5fd; text-shadow: 0 0 15px rgba(168,85,247,0.8); }
  body.neon .boot-progress-bar { background: linear-gradient(90deg, #818cf8, #a855f7); box-shadow: 0 0 15px rgba(168,85,247,0.6); }
  body.neon .footer-glow-line { background: linear-gradient(90deg, transparent, #818cf8, #a855f7, #818cf8, transparent); }
  @media (prefers-reduced-motion: reduce) { .boot-cursor { animation: none; } .footer-glow-line { animation: none; } }
  @media (max-width: 768px) { .foot-grid { flex-direction: column; gap: 32px; } .boot-screen { font-size: 12px; } .terminal-boot { padding: 36px 18px 4px; } }

  /* ---------- Tillgänglighet: skip-link + global fokus ---------- */
  .skip-link { position: absolute; top: -56px; left: 8px; background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 10000; font-weight: 600; text-decoration: none; transition: top .2s var(--ease); }
  .skip-link:focus { top: 8px; }
  :focus-visible { outline: 3px solid #6366F1; outline-offset: 2px; }

  /* ---------- svc-wide: magnetisk tilt + holografi ---------- */
  .svc-wide { transform-style: preserve-3d; will-change: transform; }
  .svc-glare { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity .35s; background: radial-gradient(circle 260px at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.22), transparent 60%); mix-blend-mode: overlay; }
  .svc-holo { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity .35s; background: linear-gradient(115deg, transparent 24%, rgba(99,102,241,0.38) 40%, rgba(99,102,241,0.26) 52%, rgba(168,85,247,0.34) 64%, transparent 80%); background-size: 220% 220%; background-position: var(--hx,50%) var(--hy,50%); mix-blend-mode: screen; }
  .svc-wide:hover .svc-glare { opacity: 1; }
  .svc-wide:hover .svc-holo { opacity: .5; }
  @media (prefers-reduced-motion: reduce) { .svc-glare, .svc-holo { display: none; } }

  /* hero-video: visa stillbild vid reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .hero-vid { display: none; }
    .browser-body { aspect-ratio: 16 / 9; background-image: url('assets/hero-poster.jpg'); background-size: cover; background-position: center; }
  }

  /* ---------- generiskt kort (används på om-oss) + responsiva subsid-rutnät ---------- */
  .svc-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
  .svc-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 20px 50px -24px rgba(79,70,229,0.4); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 64px; }
  .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
  @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 44px; } .values-grid { grid-template-columns: 1fr; } }

  /* ---------- neuralt header-lager (bakom nav-innehållet) ---------- */
  #navBar { overflow: hidden; }
  #navBar > *:not(.neural-canvas):not(.neural-spotlight) { position: relative; z-index: 2; }
  .neural-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: 0.55; pointer-events: none; transition: opacity .4s var(--ease); }
  header.scrolled #navBar .neural-canvas { opacity: 0.4; }
  .neural-spotlight { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity .3s ease; background: radial-gradient(320px circle at var(--nx,50%) var(--ny,50%), rgba(255,255,255,0.14), transparent 55%); }
  header.spotlight-on .neural-spotlight { opacity: 1; }
  @media (prefers-reduced-motion: reduce) { .neural-canvas, .neural-spotlight { display: none !important; } }
  @media (max-width: 767px) { .neural-canvas, .neural-spotlight { display: none !important; } }

  /* ---------- 20% OFF promo-sticker (gul "seal" i hero-hörnet) ---------- */
  .promo-sticker { position: absolute; top: -52px; right: -20px; z-index: 6; width: 132px; height: 132px; cursor: pointer; transform: rotate(9deg); transition: transform .18s var(--ease); -webkit-tap-highlight-color: transparent; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5)); }
  .promo-sticker:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 50%; }
  .promo-vp { width: 100%; height: 100%; perspective: 900px; animation: promoBreathe 2.4s ease-in-out infinite; }
  .promo-card { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .6s var(--ease); }
  .promo-sticker.flipped .promo-card { transform: rotateY(180deg); }
  .promo-face { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 50%; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
  .promo-front { background: radial-gradient(circle at 35% 28%, #FFE98A, #FBBF24 72%); color: #1c1603; border: 2px dashed rgba(28,22,3,0.45); box-shadow: inset 0 0 0 6px rgba(255,255,255,0.35); }
  .promo-pct { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: .84; letter-spacing: 1px; }
  .promo-off { font-size: 17px; font-weight: 900; letter-spacing: 4px; margin-top: 1px; }
  .promo-hint { position: absolute; bottom: 17px; left: 0; right: 0; font-size: 9.5px; font-weight: 800; letter-spacing: .5px; opacity: .65; text-transform: uppercase; }
  .promo-back { background: linear-gradient(150deg, var(--primary), #7c3aed); color: #fff; border: 2px solid rgba(255,255,255,0.32); padding: 13px; transform: rotateY(180deg); }
  .promo-back b { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
  .promo-back span { font-size: 9px; font-weight: 600; line-height: 1.26; }
  .promo-sticker::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(251,191,36,0.55); animation: promoPulse 2.4s ease-out infinite; pointer-events: none; }
  @keyframes promoPulse { 0% { box-shadow: 0 0 0 0 rgba(251,191,36,0.5); } 70% { box-shadow: 0 0 0 26px rgba(251,191,36,0); } 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); } }
  @keyframes promoBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
  @media (max-width: 900px) { .promo-sticker { width: 106px; height: 106px; top: -32px; right: 6px; } .promo-pct { font-size: 42px; } .promo-off { font-size: 15px; } .promo-back { padding: 8px; } .promo-back b { font-size: 11px; margin-bottom: 3px; } .promo-back span { font-size: 8px; line-height: 1.2; } }
  @media (prefers-reduced-motion: reduce) { .promo-sticker, .promo-card, .promo-vp { transition: none; animation: none; } .promo-sticker::after { animation: none; } }

  /* ---------- Beställnings-modal (egg-låst, 20% off) ---------- */
  .order-overlay { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(5,5,9,0.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  .order-overlay.open { display: flex; }
  .order-card { position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; background: var(--bg-card); border: 1px solid var(--line-strong); border-radius: 24px; padding: 34px; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.85); animation: orderIn .4s var(--ease); }
  @keyframes orderIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
  .order-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-soft); color: var(--muted); cursor: pointer; font-size: 14px; line-height: 1; }
  .order-close:hover { color: var(--text); border-color: var(--line-strong); }
  .order-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .03em; color: var(--light-indigo); background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.32); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
  .order-head h3 { font-size: 26px; margin-bottom: 8px; }
  .order-head p { color: var(--muted); font-size: 14px; margin-bottom: 22px; line-height: 1.5; }
  .order-section { margin-bottom: 22px; }
  .order-section h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-dim); margin-bottom: 12px; }
  .order-section h4 span { text-transform: none; letter-spacing: 0; font-weight: 400; }
  .order-pkgs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
  .order-pkg input { position: absolute; opacity: 0; width: 0; height: 0; }
  .opkg-box { display: flex; flex-direction: column; gap: 3px; align-items: center; text-align: center; padding: 14px 8px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color .2s, background .2s; }
  .opkg-box b { font-size: 15px; }
  .opkg-box i { font-style: normal; font-size: 12px; color: var(--muted); }
  .order-pkg input:checked + .opkg-box { border-color: var(--primary-soft); background: rgba(99,102,241,0.1); }
  .order-pkg input:focus-visible + .opkg-box { outline: 2px solid var(--primary-soft); outline-offset: 2px; }
  .addon-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .addon-name { font-size: 14px; }
  .addon-name i { font-style: normal; color: var(--muted-dim); font-size: 12px; margin-left: 6px; }
  .stepper { display: flex; align-items: center; gap: 12px; }
  .stepper button { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line-strong); background: var(--bg-soft); color: var(--text); cursor: pointer; font-size: 16px; line-height: 1; display: grid; place-items: center; }
  .stepper button:hover { border-color: var(--primary-soft); color: var(--light-indigo); }
  .addon-qty { min-width: 20px; text-align: center; font-variant-numeric: tabular-nums; font-weight: 600; }
  .order-summary { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; margin-bottom: 18px; }
  .osum-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; color: var(--muted); }
  .osum-row span:last-child { font-variant-numeric: tabular-nums; }
  #osumOrig { text-decoration: line-through; color: var(--muted-dim); }
  .osum-disc { color: var(--light-indigo); font-weight: 600; }
  .osum-total { color: var(--text); font-weight: 800; font-size: 19px; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; }
  .order-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
  #oName { grid-column: 1 / -1; }
  .order-form input, .order-form textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line-strong); background: var(--bg-soft); color: var(--text); font: inherit; font-size: 14px; }
  .order-form input.err { border-color: #ef4444; }
  .order-form textarea { margin-bottom: 12px; resize: vertical; }
  .order-submit { width: 100%; }
  .order-note { font-size: 12px; color: var(--muted-dim); text-align: center; margin-top: 10px; }
  .order-note b { color: var(--light-indigo); }
  @media (max-width: 560px) { .order-card { padding: 24px 20px; } .order-pkgs { grid-template-columns: 1fr; } .order-fields { grid-template-columns: 1fr; } }

  /* ===== A11y: fokusring for annars outline:none-falt ===== */
  .terminal-input input:focus-visible { outline: 2px solid #22C55E; outline-offset: 2px; }
  input[type=range].slider:focus-visible { outline: 2px solid #6366F1; outline-offset: 3px; }
  /* ===== Badge for riktiga projekt (indigo, vs dampad .badge-ex) ===== */
  .badge-proj { font-size: 9px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 7px; border-radius: 5px; border: 1px solid rgba(99,102,241,0.5); color: var(--light-indigo); background: rgba(99,102,241,0.12); text-transform: uppercase; }

  /* ===================================================================
     FAS 2 – SÖMLÖSA SUBSIDE-BAKGRUNDER (motiv + djup-overlay)
     Endast body.subpage (subsidor). Startsidan oberörd. Grön införs ej –
     ev. grön ton kommer enbart från motivet i bg-ai-losningar (AI-undantag).
     =================================================================== */
  body.subpage::before { content: ""; position: fixed; inset: 0; z-index: -2; background: #0B0B0F var(--bgimg) repeat; background-size: 520px; opacity: .48; }
  body.subpage::after { content: ""; position: fixed; inset: 0; z-index: -1;
    background:
      radial-gradient(120% 70% at 50% -10%, rgba(79,70,229,.24), transparent 60%),
      linear-gradient(180deg, rgba(11,11,15,.42), rgba(11,11,15,.82)); }
  body[data-bg="webbdesign"] { --bgimg: url(/assets/bg-webbdesign.webp); }
  body[data-bg="seo"] { --bgimg: url(/assets/bg-seo.webp); }
  body[data-bg="ai-losningar"] { --bgimg: url(/assets/bg-ai-losningar.webp); }
  body[data-bg="branding"] { --bgimg: url(/assets/bg-branding.webp); }
  body[data-bg="case"] { --bgimg: url(/assets/bg-case.webp); }
  body[data-bg="om-oss"] { --bgimg: url(/assets/bg-om-oss.webp); }
  /* per-sida läsbarhet: busiga motiv dämpas, lugna får synas mer */
  body[data-bg="seo"]::before { opacity: .55; }
  body[data-bg="om-oss"]::before { opacity: .55; }
  body[data-bg="ai-losningar"]::before { opacity: .55; }
  body[data-bg="branding"]::before { opacity: .55; }
  body[data-bg="case"]::before { opacity: .55; }
  @media (max-width: 768px) { body.subpage::before { background-attachment: scroll; background-size: 380px; } }
  /* E: undersidornas flyttade moduler får ej lysa vit hårlinje mot mörk bg */
  body.subpage .ai-sec { border-top: 0; border-bottom: 0; }

  /* ===== /case/ : rutnät av case-kort (ej startsidans pin-scroll) ===== */
  .case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
  .case-grid .case-card { width: auto; }
  .case-grid--feature { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
  /* feature-kortens bild styrs nu av .case-visual aspect-ratio 16/9 (bredare kort = större bild) */
  @media (max-width: 560px) { .case-grid, .case-grid--feature { grid-template-columns: 1fr; } }

  /* ===== Startsida: bantad tjänste-ÖVERSIKT (4 rutor → tjänstesidor) ===== */
  .svc-overview { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
  .svc-tile { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; }
  /* bild-bakgrund + mörk scrim så ikon/titel/text/"Läs mer" förblir knivskarpa */
  .svc-tile::before { content: ''; position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
  .svc-tile::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(rgba(11,11,15,0.55), rgba(11,11,15,0.82)); }
  .svc-tile > * { position: relative; z-index: 1; }
  .svc-tile.tile-webbdesign::before { background-image: url('/assets/tjanst-webbdesign.jpg'); }
  .svc-tile.tile-seo::before { background-image: url('/assets/tjanst-seo.jpg'); }
  .svc-tile.tile-ai::before { background-image: url('/assets/tjanst-ai.jpg'); }
  .svc-tile.tile-branding::before { background-image: url('/assets/tjanst-branding.jpg'); }
  .svc-tile h3 { font-size: 20px; margin-bottom: 8px; }
  .svc-tile p { color: #c9c9d6; font-size: 15px; margin-bottom: 16px; flex: 1 1 auto; }
  .svc-tile .svc-more { margin-top: 0; }
