/* ==========================================================================
   Veriad Digital — Stylesheet (v2, redesign)
   Principles: one idea per section, typography as design, asymmetry,
               max contrast, no gradient soup.
   ========================================================================== */

:root {
  /* Color — lighter v4: more headroom, images sit more naturally */
  --bg:            #1B2238;   /* base — lighter than v3 */
  --bg-2:          #222A44;   /* second layer (alternating sections) */
  --surface:       #2B3352;   /* cards, mockups, elevated */
  --surface-2:     #363E5F;   /* hover / top layer */
  --line:          rgba(241,245,249,0.12);
  --line-strong:   rgba(241,245,249,0.26);

  --text:          #F1F5F9;   /* primary */
  --text-body:     #CBD5E1;   /* body */
  --text-muted:    #94A3B8;   /* muted — never darker */

  --accent:        #3B82F6;
  --accent-hover:  #2563EB;
  --accent-ink:    #FFFFFF;   /* text on accent */

  /* Type */
  --font-display:  'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  /* Space */
  --gutter:        clamp(20px, 4vw, 56px);
  --col:           minmax(0, 1fr);

  /* Motion */
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }

/* Typography scale — the design IS the type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(48px, 9.5vw, 112px); letter-spacing: -0.035em; font-weight: 500; }
h2 { font-size: clamp(36px, 6vw, 72px); letter-spacing: -0.025em; }
h3 { font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.015em; font-weight: 500; }
p  { margin: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lede {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--text-body);
  max-width: 52ch;
}

/* Layout primitives */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Selection + focus */
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

/* =========================================================================
   Navigation — fixed, adaptive contrast
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 20px 0;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7,11,20,0.75);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center;
  height: 44px;
}
.logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 0.2s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a.is-active { opacity: 1; color: var(--text); }
.nav-cta {
  color: var(--accent-ink) !important;
  opacity: 1 !important;
  padding: 10px 22px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 6px 20px -6px rgba(59,130,246,0.55);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(59,130,246,0.7);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 var(--gutter);
    gap: 32px;
    background: var(--bg);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
    z-index: 70;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { font-size: 32px; font-family: var(--font-display); letter-spacing: -0.02em; }
  .nav-cta { padding: 14px 24px; font-size: 20px; border-radius: 999px; }
}

/* Scroll progress */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent);
  z-index: 100;
  transition: width 0.1s linear;
}

/* =========================================================================
   HERO — massive type, word-split animation
   ========================================================================= */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: end;
}
.hero__kicker {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.hero__kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(59,130,246,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(59,130,246,0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(59,130,246,0.08); }
}
.hero h1 {
  max-width: 16ch;
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.25em;
}
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}
.hero.is-ready h1 .word > span {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}
/* staggered via style="--i:N" */
.hero h1 .word > span { transition-delay: calc(var(--i, 0) * 60ms + 80ms); }

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 64px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.8s, transform 0.8s var(--ease) 0.8s;
}
.hero.is-ready .hero__bottom { opacity: 1; transform: translateY(0); }

.hero__lede {
  color: var(--text-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 38ch;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-self: end;
}
@media (max-width: 820px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 28px; }
  .hero__actions { justify-self: start; }
}

/* Mouse indicator */
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  opacity: 0.7;
}
.hero__scroll::after {
  content: ''; position: absolute;
  left: 50%; top: 8px;
  width: 2px; height: 6px;
  border-radius: 2px;
  background: var(--text);
  transform: translateX(-50%);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* =========================================================================
   Buttons — high contrast, no mysterious greys
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-size: 15px; font-weight: 500;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn--ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--text); background: var(--text); color: var(--bg); }

.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================================
   Generic section shell (asymmetric by default)
   ========================================================================= */
.section {
  padding: clamp(96px, 14vh, 180px) 0;
  position: relative;
}
.section--tight { padding: clamp(64px, 10vh, 120px) 0; }

.section__label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.section__label .num {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 14px;
}
.section__label .eyebrow { color: var(--text-muted); }

/* =========================================================================
   Manifesto section (asymmetric: label left-top, text mid-right)
   ========================================================================= */
.manifesto {
  padding: clamp(100px, 14vh, 180px) 0;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 120px);
  align-items: start;
}
.manifesto__heading {
  position: sticky; top: 140px;
}
.manifesto__heading h2 {
  max-width: 12ch;
}
.manifesto__body {
  padding-top: clamp(24px, 12vh, 160px);
  display: grid; gap: 28px;
}
.manifesto__body p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--text-body);
  max-width: 52ch;
}
.manifesto__body strong {
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 820px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 48px; }
  .manifesto__heading { position: static; }
  .manifesto__body { padding-top: 0; }
}

/* =========================================================================
   Pinned section — two-column sticky heading (left) + items (right)
   ========================================================================= */
.pinned {
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 160px);
}
.pinned__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 6vw, 120px);
  align-items: start;
}
.pinned__title {
  position: sticky;
  top: 140px;
  align-self: start;
}
.pinned__title h2 {
  font-size: clamp(48px, 8vw, 96px);
  color: var(--text);
  margin: 0;
  letter-spacing: -0.03em;
}
.pinned__title .count {
  color: var(--text-muted);
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 18px;
}
.pinned__track {
  display: grid;
  gap: clamp(16px, 3vh, 32px);
}
.pinned__item {
  padding: clamp(40px, 7vh, 80px) 0;
  border-top: 1px solid var(--line);
}
.pinned__item:first-child { border-top: 0; padding-top: 0; }
.pinned__item .idx {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 18px;
}
.pinned__item h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
  max-width: 20ch;
}
.pinned__item p {
  color: var(--text-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  max-width: 52ch;
}
.pinned__item__meta {
  color: var(--text-muted);
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 24px;
  display: block;
}
@media (max-width: 820px) {
  .pinned__layout { grid-template-columns: 1fr; gap: 48px; }
  .pinned__title { position: static; }
  .pinned__title h2 { font-size: clamp(40px, 10vw, 72px); }
}

/* =========================================================================
   Horizontal scroll track (desktop) / stacks on mobile
   ========================================================================= */
.hscroll {
  padding: clamp(80px, 12vh, 140px) 0 clamp(120px, 16vh, 180px);
}
.hscroll__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px;
  margin-bottom: 56px;
  padding: 0 var(--gutter);
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
}
.hscroll__head h2 { max-width: 16ch; }
.hscroll__hint {
  color: var(--text-muted);
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hscroll__hint .line {
  display: inline-block; width: 48px; height: 1px; background: var(--line-strong);
  position: relative; overflow: hidden;
}
.hscroll__hint .line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--text); width: 18px;
  animation: slide 2.8s var(--ease) infinite;
}
@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(260%); }
}

.hscroll__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(520px, 78vw);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px var(--gutter) 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.hscroll__track::-webkit-scrollbar { display: none; }
.hscroll__track:active { cursor: grabbing; }

.hcard {
  scroll-snap-align: start;
  padding: 40px 36px;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hcard:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.hcard__idx {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.15em;
}
.hcard__title {
  font-size: clamp(28px, 3vw, 40px);
  margin: 60px 0 20px;
}
.hcard__desc {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  max-width: 36ch;
}
.hcard__link {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text);
  font-size: 14px; font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hcard__link .arrow { transition: transform 0.25s var(--ease); }
.hcard:hover .hcard__link .arrow { transform: translateX(4px); }

/* =========================================================================
   Proof bar — single line number run
   ========================================================================= */
.proof {
  padding: clamp(64px, 9vh, 100px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.proof__cell {
  display: flex; flex-direction: column; gap: 10px;
}
.proof__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof__label {
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.15em; text-transform: uppercase;
}
@media (max-width: 720px) {
  .proof__row { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================================
   Statement (asymmetric)
   ========================================================================= */
.statement {
  padding: clamp(120px, 18vh, 220px) 0;
}
.statement__inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 120px);
  align-items: start;
}
.statement__eyebrow { grid-column: 1; }
.statement__body { grid-column: 2; }
.statement__body h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.statement__body p {
  color: var(--text-body);
  font-size: clamp(16px, 1.35vw, 19px);
  max-width: 48ch;
  margin-bottom: 16px;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .statement__inner { grid-template-columns: 1fr; gap: 28px; }
  .statement__eyebrow, .statement__body { grid-column: 1; }
}

/* =========================================================================
   FAQ — minimal accordion
   ========================================================================= */
.faq {
  padding: clamp(100px, 14vh, 160px) 0;
}
.faq__grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 120px);
  align-items: start;
}
.faq__grid h2 { max-width: 10ch; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  padding: 28px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__q .plus {
  width: 18px; height: 18px; position: relative; flex-shrink: 0;
}
.faq__q .plus::before, .faq__q .plus::after {
  content: ''; position: absolute;
  background: var(--text);
  left: 50%; top: 50%;
  transition: transform 0.3s var(--ease);
}
.faq__q .plus::before { width: 18px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__q .plus::after  { width: 1.5px; height: 18px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__q .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.faq__a__inner {
  padding: 0 0 28px;
  color: var(--text-body);
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================================
   Footer — heavy type, minimal lines
   ========================================================================= */
.site-footer {
  padding: clamp(80px, 10vh, 120px) 0 40px;
  border-top: 1px solid var(--line);
}
.footer__wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__lead {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 80px;
  max-width: 14ch;
}
.footer__lead a { color: var(--accent); }
.footer__lead a:hover { text-decoration: underline; text-underline-offset: 8px; }
.footer__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.footer__col h4 {
  font-size: 12px; font-family: var(--font-body);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__col a {
  color: var(--text-body);
  font-size: 15px;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--text); }
.footer__meta {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
}
@media (max-width: 820px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* =========================================================================
   Reveal primitives (sequenced, not just fade)
   ========================================================================= */
.seq > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.seq > *:nth-child(1) { transition-delay: 0.05s; }
.seq > *:nth-child(2) { transition-delay: 0.15s; }
.seq > *:nth-child(3) { transition-delay: 0.25s; }
.seq > *:nth-child(4) { transition-delay: 0.35s; }
.seq > *:nth-child(5) { transition-delay: 0.45s; }
.seq > *:nth-child(6) { transition-delay: 0.55s; }
.seq.is-in > * { opacity: 1; transform: translateY(0); }

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: transform, opacity;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up    { transform: translateY(40px); }
.reveal-left.is-in,
.reveal-right.is-in,
.reveal-up.is-in { opacity: 1; transform: none; }

/* =========================================================================
   Page header (inner pages)
   ========================================================================= */
.page-hero {
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  max-width: 20ch;
}
.page-hero__sub {
  margin-top: 40px;
  color: var(--text-body);
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 52ch;
}

/* =========================================================================
   Service deep sections (pinned heading per service)
   ========================================================================= */
.svc {
  padding: clamp(100px, 14vh, 160px) 0;
  border-bottom: 1px solid var(--line);
}
.svc__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 6vw, 120px);
  align-items: start;
}
.svc__head { position: sticky; top: 140px; }
.svc__head .idx {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px;
}
.svc__head h2 { font-size: clamp(36px, 5.5vw, 72px); margin-bottom: 24px; }
.svc__head p { color: var(--text-body); max-width: 38ch; margin-bottom: 32px; }
.svc__body { display: grid; gap: 32px; }
.svc__feature {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  align-items: start;
}
.svc__feature:first-child { border-top: 0; padding-top: 0; }
.svc__feature .num {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.15em;
  padding-top: 3px;
}
.svc__feature h3 { font-size: clamp(20px, 1.6vw, 24px); margin-bottom: 10px; color: var(--text); }
.svc__feature p  { color: var(--text-body); font-size: 16px; line-height: 1.65; max-width: 54ch; }
@media (max-width: 820px) {
  .svc__grid { grid-template-columns: 1fr; }
  .svc__head { position: static; }
}

/* =========================================================================
   Contact page
   ========================================================================= */
.contact {
  padding: clamp(80px, 10vh, 120px) 0 clamp(100px, 14vh, 160px);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 120px);
  align-items: start;
}
.contact__info { display: grid; gap: 28px; position: sticky; top: 140px; }
.contact__info h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.contact__row {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.contact__row .label {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 6px;
}
.contact__row .value {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
}
.contact__row .value a { color: var(--text); transition: color 0.2s var(--ease); }
.contact__row .value a:hover { color: var(--accent); }

.contact-form { display: grid; gap: 20px; }
.contact-form .field { display: grid; gap: 8px; }
.contact-form label {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 17px;
  transition: border-color 0.2s var(--ease);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.contact-form textarea { min-height: 120px; }
.contact-form .field--hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form button { margin-top: 16px; justify-self: start; }
.contact-form .field__error {
  color: #F87171;
  font-size: 13px;
  display: none;
}
.contact-form .field.is-invalid .field__error { display: block; }
.contact-form .field.is-invalid input,
.contact-form .field.is-invalid textarea { border-bottom-color: #F87171; }
.form-success {
  display: none;
  padding: 48px 0;
}
.form-success.is-active { display: block; }
.form-success h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.form-success p  { color: var(--text-body); }

@media (max-width: 820px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { position: static; }
}

/* =========================================================================
   Simple prose (integritetspolicy)
   ========================================================================= */
.prose {
  max-width: 700px;
  margin: 80px auto 120px;
  padding: 0 var(--gutter);
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
}
.prose p { margin-bottom: 20px; }
.prose a { color: var(--accent); }
.prose a:hover { text-decoration: underline; }

/* =========================================================================
   Section surface helper (alternation)
   ========================================================================= */
.bg-2 { background: var(--bg-2); }
.surface-bg { background: var(--surface); }

/* =========================================================================
   PROCESS — kompakt 4-kolumns grid (ersätter horisontell scroll)
   ========================================================================= */
.process {
  padding: clamp(72px, 11vh, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.process .wrap { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }
.process__head { margin-bottom: clamp(36px, 5vh, 56px); max-width: 720px; }
.process__head h2 { max-width: 18ch; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}
.process__card:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.process__step {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.process__card h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 2px 0 4px;
}
.process__card p {
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.process__day {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   HSCROLL v2 — native CSS scroll-snap + arrows + dots
   ========================================================================= */
.hscroll--v2 .hscroll__track {
  /* override v1 */
  cursor: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.hscroll__controls {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
  padding: 0 var(--gutter);
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
}
.hscroll__arrows { display: flex; gap: 10px; }
.hscroll__arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: var(--bg-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.hscroll__arrow:hover {
  background: var(--surface);
  border-color: var(--text);
}
.hscroll__arrow:active { transform: scale(0.96); }
.hscroll__arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.hscroll__arrow svg { width: 20px; height: 20px; }

.hscroll__dots {
  display: flex; gap: 10px;
  margin-left: auto;
  align-items: center;
}
.hscroll__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background 0.25s var(--ease), width 0.3s var(--ease);
}
.hscroll__dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 8px;
}

/* =========================================================================
   NEW CTA block — split: lead text + inline form
   ========================================================================= */
.cta-split {
  padding: clamp(96px, 14vh, 160px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.cta-split__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.cta-split__lead {
  display: grid; gap: 24px;
}
.cta-split__lead h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--text);
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.cta-split__lead p {
  color: var(--text-body);
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 42ch;
}
.cta-split__lead .contacts {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 8px;
}
.cta-split__lead .contacts a {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cta-split__lead .contacts a:hover { color: var(--accent); border-color: var(--accent); }

.cta-split__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: grid; gap: 16px;
}
.cta-split__form label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.cta-split__form input,
.cta-split__form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  padding: 10px 0;
  font: inherit;
  font-size: 16px;
  transition: border-color 0.2s var(--ease);
}
.cta-split__form input:focus,
.cta-split__form textarea:focus { outline: none; border-bottom-color: var(--accent); }
.cta-split__form .field { display: grid; gap: 6px; }
.cta-split__form button { margin-top: 12px; justify-self: start; }
.cta-split__form .field--hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cta-split__form__ok {
  display: none;
  text-align: left;
}
.cta-split__form.is-sent form { display: none; }
.cta-split__form.is-sent .cta-split__form__ok { display: block; }
.cta-split__form__ok h3 { font-size: 28px; margin-bottom: 10px; }
.cta-split__form__ok p { color: var(--text-body); }

@media (max-width: 820px) {
  .cta-split__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Hero with background image (optional)
   ========================================================================= */
.has-bg-image {
  position: relative;
  isolation: isolate;
}
.has-bg-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: -2;
}
.has-bg-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,34,56,0.7) 0%, rgba(27,34,56,0.9) 100%);
  z-index: -1;
}

.image-block {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
}
.image-block img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,34,56,0.2) 0%, rgba(27,34,56,0.6) 100%);
}

/* =========================================================================
   /exempel/ — pinned scroll mockup pattern
   ========================================================================= */
.examples-intro {
  padding: 0 0 clamp(40px, 6vh, 80px);
}

.example {
  padding: clamp(60px, 10vh, 120px) 0;
  border-top: 1px solid var(--line);
}
.example__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
}
.example__focus {
  display: grid; gap: 20px;
  align-self: start;
}
.example__focus .badge {
  display: inline-block;
  color: var(--accent);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(59,130,246,0.14);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
  font-weight: 500;
}
.example__focus h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 6px;
}
.example__focus > p {
  color: var(--text-body);
  max-width: 40ch;
}
.example__focus ul {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 12px;
}
.example__focus li {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-body);
  font-size: 15px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.15s var(--ease);
}
.example__focus li:hover {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
  transform: translateX(2px);
}
.example__focus li::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
.example__focus li.is-active {
  border-color: var(--accent);
  background: rgba(59,130,246,0.08);
  color: var(--text);
}
.example__focus li.is-active::before {
  background: var(--accent);
  transform: scale(1.4);
}

/* Mockup browser frame — sticky panel with internal scroll */
.mockup {
  position: sticky;
  top: 110px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
  height: min(78vh, 720px);
  display: flex; flex-direction: column;
}
.mockup__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}
.mockup__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.mockup__bar .dot:nth-child(1) { background: #F87171; }
.mockup__bar .dot:nth-child(2) { background: #FBBF24; }
.mockup__bar .dot:nth-child(3) { background: #34D399; }
.mockup__bar .url {
  margin-left: 10px;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  flex: 1;
  border: 1px solid #E2E8F0;
}
.mockup__viewport {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mockup__viewport::-webkit-scrollbar { width: 6px; }
.mockup__viewport::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }
.mockup__scroller { display: block; }
.mockup__scroller > [data-anchor] { scroll-margin-top: 0; }

/* Mockup themes */
.mockup--artisan { background: #FBF3E8; }
.mockup--restaurant { background: #0A0A0A; color: #F5E6C8; }
.mockup--shop { background: #FFFFFF; }
.mockup--b2b { background: #F8FAFC; }

/* Artisan mockup styles */
.mk-artisan {
  font-family: 'Inter', sans-serif;
  color: #2B1810;
}
.mk-artisan .hero {
  background: linear-gradient(135deg, #6B3410 0%, #8B4513 100%);
  color: #FBF3E8;
  padding: 48px 28px;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.mk-artisan .hero h1 { font-size: 32px; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 14px; font-weight: 700; color: #FBF3E8; font-family: 'Space Grotesk', sans-serif; }
.mk-artisan .hero p { font-size: 13px; color: rgba(251,243,232,0.85); margin: 0 0 20px; max-width: 28ch; }
.mk-artisan .hero .btn-m { display: inline-block; background: #D97706; color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; width: fit-content; }
.mk-artisan .about { padding: 28px; background: #FBF3E8; }
.mk-artisan .about h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; margin: 0 0 12px; color: #2B1810; }
.mk-artisan .about p { font-size: 13px; line-height: 1.6; color: #5C4033; }
.mk-artisan .services { background: #2B1810; color: #FBF3E8; padding: 28px; }
.mk-artisan .services h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin: 0 0 16px; }
.mk-artisan .services .srv { padding: 14px 0; border-top: 1px solid rgba(251,243,232,0.2); display: flex; justify-content: space-between; font-size: 13px; }
.mk-artisan .services .srv:first-child { border-top: 0; }
.mk-artisan .gallery { padding: 28px; background: #FBF3E8; }
.mk-artisan .gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.mk-artisan .gallery__grid > div { aspect-ratio: 1; background: #8B4513; border-radius: 4px; }
.mk-artisan .footer-m { padding: 22px 28px; background: #2B1810; color: #D97706; font-size: 12px; text-align: center; }

/* Restaurant mockup */
.mk-restaurant {
  color: #F5E6C8;
  font-family: 'Inter', sans-serif;
}
.mk-restaurant .hero {
  min-height: 380px;
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.8)), url('/assets/img/meeting.jpg');
  background-size: cover;
  background-position: center;
  padding: 48px 28px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.mk-restaurant .hero h1 { font-family: 'Space Grotesk', serif; font-size: 36px; letter-spacing: 0.02em; margin: 0 0 8px; font-weight: 400; color: #F5E6C8; }
.mk-restaurant .hero .sub { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #D4AF37; margin-bottom: 20px; }
.mk-restaurant .hero .btn-m { background: #D4AF37; color: #0A0A0A; padding: 10px 22px; border-radius: 0; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }
.mk-restaurant .menu-m { padding: 32px 28px; background: #0A0A0A; }
.mk-restaurant .menu-m h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; color: #D4AF37; margin: 0 0 6px; text-align: center; }
.mk-restaurant .menu-m .tag { text-align: center; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #F5E6C8; opacity: 0.5; margin-bottom: 18px; }
.mk-restaurant .menu-m .dish { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid rgba(212,175,55,0.2); font-size: 13px; }
.mk-restaurant .menu-m .dish:first-of-type { border-top: 0; }
.mk-restaurant .menu-m .dish .n { color: #F5E6C8; font-weight: 500; }
.mk-restaurant .menu-m .dish .p { color: #D4AF37; }
.mk-restaurant .story { padding: 32px 28px; background: #141414; }
.mk-restaurant .story h3 { color: #D4AF37; font-size: 18px; margin: 0 0 8px; font-family: 'Space Grotesk', sans-serif; }
.mk-restaurant .story p { font-size: 13px; line-height: 1.7; color: rgba(245,230,200,0.8); }
.mk-restaurant .footer-m { padding: 22px 28px; text-align: center; font-size: 11px; letter-spacing: 0.2em; color: rgba(212,175,55,0.7); }

/* Shop mockup */
.mk-shop {
  color: #0A0A0A;
  font-family: 'Inter', sans-serif;
}
.mk-shop .top {
  padding: 16px 22px;
  border-bottom: 1px solid #E2E8F0;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff;
}
.mk-shop .top .logo-m { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: -0.02em; }
.mk-shop .top .cart { font-size: 12px; border: 1px solid #0A0A0A; padding: 6px 12px; border-radius: 999px; }
.mk-shop .hero {
  padding: 50px 28px;
  text-align: center;
}
.mk-shop .hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 500; margin: 0 0 12px; letter-spacing: -0.03em; }
.mk-shop .hero p { font-size: 13px; color: #64748B; max-width: 28ch; margin: 0 auto 20px; }
.mk-shop .hero .btn-m { background: #0A0A0A; color: #fff; padding: 10px 22px; border-radius: 999px; font-size: 12px; display: inline-block; }
.mk-shop .filters { padding: 14px 22px; background: #F8FAFC; display: flex; gap: 8px; overflow-x: auto; }
.mk-shop .filters span { font-size: 11px; padding: 6px 12px; background: #fff; border: 1px solid #E2E8F0; border-radius: 999px; white-space: nowrap; }
.mk-shop .filters span.is-on { background: #0A0A0A; color: #fff; border-color: #0A0A0A; }
.mk-shop .grid-m { padding: 18px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mk-shop .prod { border: 1px solid #E2E8F0; border-radius: 8px; overflow: hidden; background: #fff; }
.mk-shop .prod .img { aspect-ratio: 1; background: linear-gradient(135deg, #E2E8F0, #CBD5E1); }
.mk-shop .prod .txt { padding: 10px 12px; }
.mk-shop .prod .n { font-size: 12px; font-weight: 500; }
.mk-shop .prod .p { font-size: 11px; color: #64748B; margin-top: 2px; }
.mk-shop .prod .btn-m { margin-top: 8px; font-size: 10px; background: #0A0A0A; color: #fff; padding: 6px 10px; border-radius: 4px; display: inline-block; }
.mk-shop .footer-m { padding: 22px; text-align: center; font-size: 11px; color: #64748B; border-top: 1px solid #E2E8F0; }

/* B2B mockup */
.mk-b2b {
  font-family: 'Inter', sans-serif;
  color: #0F172A;
}
.mk-b2b .top {
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  display: flex; justify-content: space-between; align-items: center;
}
.mk-b2b .top .logo-m { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; color: #1E3A8A; letter-spacing: -0.02em; }
.mk-b2b .top .nav-m { display: flex; gap: 14px; font-size: 11px; color: #475569; }
.mk-b2b .hero {
  padding: 56px 28px;
  background: linear-gradient(135deg, #F8FAFC 0%, #E0E7FF 100%);
}
.mk-b2b .hero .tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #1E3A8A; margin-bottom: 12px; }
.mk-b2b .hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 500; margin: 0 0 12px; letter-spacing: -0.02em; color: #0F172A; line-height: 1.15; }
.mk-b2b .hero p { font-size: 13px; color: #475569; max-width: 36ch; margin: 0 0 20px; line-height: 1.5; }
.mk-b2b .hero .btn-m { background: #1E3A8A; color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 12px; font-weight: 500; }
.mk-b2b .stats { padding: 28px; background: #fff; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; border-bottom: 1px solid #E2E8F0; }
.mk-b2b .stats .s { text-align: center; padding: 8px 6px; }
.mk-b2b .stats .n { font-family: 'Space Grotesk', sans-serif; font-size: 22px; color: #1E3A8A; font-weight: 600; }
.mk-b2b .stats .l { font-size: 10px; color: #64748B; letter-spacing: 0.08em; margin-top: 2px; }
.mk-b2b .services-m { padding: 32px 28px; background: #F8FAFC; }
.mk-b2b .services-m h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin: 0 0 16px; color: #0F172A; }
.mk-b2b .services-m .row { padding: 12px 0; border-top: 1px solid #E2E8F0; font-size: 12px; display: flex; justify-content: space-between; color: #0F172A; }
.mk-b2b .services-m .row:first-child { border-top: 0; }
.mk-b2b .footer-m { background: #1E3A8A; padding: 24px 28px; color: #E0E7FF; text-align: center; font-size: 11px; }

/* === Extended mockup blocks (alla teman) === */
/* Generic form-m / row-m used by contact/booking blocks */
.mockup .form-m { display: grid; gap: 8px; margin-top: 12px; }
.mockup .row-m { padding: 10px 12px; border-radius: 6px; font-size: 12px; }
.mockup .btn-m { cursor: default; }

/* Artisan extras */
.mk-artisan .reviews { padding: 28px; background: #2B1810; color: #FBF3E8; }
.mk-artisan .reviews h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin: 0 0 16px; color: #FBF3E8; }
.mk-artisan .reviews .rev { padding: 14px 0; border-top: 1px solid rgba(251,243,232,0.18); }
.mk-artisan .reviews .rev:first-of-type { border-top: 0; }
.mk-artisan .reviews .rev p { font-size: 13px; line-height: 1.6; margin: 0 0 6px; font-style: italic; color: #FBF3E8; }
.mk-artisan .reviews .rev span { font-size: 11px; color: #D97706; letter-spacing: 0.06em; }
.mk-artisan .contact-m { padding: 28px; background: #FBF3E8; }
.mk-artisan .contact-m h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; margin: 0 0 8px; color: #2B1810; }
.mk-artisan .contact-m p { font-size: 13px; color: #5C4033; margin: 0 0 6px; }
.mk-artisan .row-m { background: #fff; border: 1px solid rgba(43,24,16,0.12); color: #8A6B53; }
.mk-artisan .contact-m .btn-m { margin-top: 6px; }

/* Restaurant extras */
.mk-restaurant .deals { padding: 26px 28px; background: #1A1208; border-top: 1px solid rgba(212,175,55,0.18); }
.mk-restaurant .deals h2 { font-family: 'Space Grotesk', sans-serif; color: #D4AF37; font-size: 18px; margin: 0 0 12px; }
.mk-restaurant .deals .deal { font-size: 13px; color: #F5E6C8; padding: 8px 0; border-top: 1px solid rgba(212,175,55,0.14); margin: 0; }
.mk-restaurant .deals .deal:first-of-type { border-top: 0; }
.mk-restaurant .contact-m { padding: 32px 28px; background: #0A0A0A; border-top: 1px solid rgba(212,175,55,0.18); }
.mk-restaurant .contact-m h2 { font-family: 'Space Grotesk', sans-serif; color: #D4AF37; font-size: 20px; margin: 0 0 8px; text-align: center; }
.mk-restaurant .row-m { background: #141414; border: 1px solid rgba(212,175,55,0.22); color: rgba(245,230,200,0.55); }
.mk-restaurant .contact-m .btn-m { margin: 12px auto 0; display: block; width: fit-content; }

/* Shop extras */
.mk-shop .product-m { padding: 28px 22px; background: #fff; border-top: 1px solid #E2E8F0; }
.mk-shop .product-m .hero-img { aspect-ratio: 1; background: linear-gradient(135deg, #E2E8F0, #94A3B8); border-radius: 8px; margin-bottom: 18px; }
.mk-shop .product-m .info .badge-m { display: inline-block; background: #0A0A0A; color: #fff; font-size: 10px; letter-spacing: 0.18em; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.mk-shop .product-m h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 500; margin: 0 0 6px; }
.mk-shop .product-m .price { font-size: 16px; color: #0A0A0A; margin: 0 0 10px; }
.mk-shop .product-m .desc { font-size: 13px; color: #64748B; line-height: 1.6; margin: 0 0 16px; }
.mk-shop .story { padding: 32px 22px; background: #F8FAFC; border-top: 1px solid #E2E8F0; }
.mk-shop .story h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; margin: 0 0 10px; }
.mk-shop .story p { font-size: 13px; color: #475569; line-height: 1.6; margin: 0 0 8px; }
.mk-shop .newsletter { padding: 28px 22px; background: #0A0A0A; color: #fff; }
.mk-shop .newsletter h2 { font-family: 'Space Grotesk', sans-serif; color: #fff; font-size: 20px; margin: 0 0 6px; }
.mk-shop .newsletter p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0 0 6px; }
.mk-shop .row-m { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.45); }
.mk-shop .newsletter .btn-m { background: #fff; color: #0A0A0A; }

/* B2B extras */
.mk-b2b .cases { padding: 32px 28px; background: #fff; border-top: 1px solid #E2E8F0; }
.mk-b2b .cases h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin: 0 0 16px; color: #0F172A; }
.mk-b2b .cases .case { padding: 16px 0; border-top: 1px solid #E2E8F0; }
.mk-b2b .cases .case:first-of-type { border-top: 0; }
.mk-b2b .cases .case .kicker { display: block; font-size: 10px; letter-spacing: 0.18em; color: #1E3A8A; margin-bottom: 6px; }
.mk-b2b .cases .case h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 500; margin: 0 0 6px; color: #0F172A; }
.mk-b2b .cases .case p { font-size: 12.5px; color: #475569; line-height: 1.55; margin: 0; }
.mk-b2b .team-m { padding: 32px 28px; background: #F8FAFC; border-top: 1px solid #E2E8F0; }
.mk-b2b .team-m h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin: 0 0 16px; color: #0F172A; }
.mk-b2b .team-m .people { display: grid; gap: 10px; }
.mk-b2b .team-m .p-m { display: flex; gap: 12px; align-items: center; padding: 10px; background: #fff; border: 1px solid #E2E8F0; border-radius: 8px; }
.mk-b2b .team-m .av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #1E3A8A, #3B82F6); flex-shrink: 0; }
.mk-b2b .team-m .p-m strong { display: block; font-size: 13px; color: #0F172A; }
.mk-b2b .team-m .p-m span { font-size: 11px; color: #64748B; }
.mk-b2b .contact-m { padding: 32px 28px; background: #1E3A8A; color: #E0E7FF; }
.mk-b2b .contact-m h2 { font-family: 'Space Grotesk', sans-serif; color: #fff; font-size: 20px; margin: 0 0 8px; }
.mk-b2b .contact-m p { font-size: 13px; color: #C7D2FE; margin: 0 0 6px; }
.mk-b2b .row-m { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.55); }
.mk-b2b .contact-m .btn-m { background: #fff; color: #1E3A8A; }

/* Below-mockup points list for each example */
.example__bullets {
  margin-top: clamp(28px, 5vh, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.example__bullets li {
  list-style: none;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.example__bullets li::before {
  content: '→'; position: absolute; left: 0; top: 0;
  color: var(--accent);
}

@media (max-width: 900px) {
  .example__grid { grid-template-columns: 1fr; }
  .example__focus, .mockup { position: static; }
  .example__bullets { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================================================
   Simple prose (integritetspolicy)
   ========================================================================= */
.prose {
  max-width: 700px;
  margin: 80px auto 120px;
  padding: 0 var(--gutter);
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
}
.prose p { margin-bottom: 20px; }
.prose a { color: var(--accent); }
.prose a:hover { text-decoration: underline; }

/* =========================================================================
   Reduced motion — respect preference
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero h1 .word > span { transform: none; opacity: 1; }
  .hero__bottom, .seq > *, .reveal-left, .reveal-right, .reveal-up {
    opacity: 1 !important; transform: none !important;
  }
}
