:root {
  --bg: #F7F5FC;
  --bg-soft: #EFEAF8;
  --bg-elev: #FFFFFF;
  --bg-dark: #18122B;
  --line: rgba(24, 18, 40, 0.08);
  --line-strong: rgba(24, 18, 40, 0.14);
  --text: #18122B;
  --text-muted: #5E5674;
  --text-dim: rgba(94, 86, 116, 0.65);
  --text-on-light: #18122B;
  --grad-1: #9B76F5;
  --grad-2: #E2BCF4;
  --accent: #9B76F5;
  --gradient: linear-gradient(180deg, #9B76F5 0%, #B88AF2 52%, #E2BCF4 100%);
  --gradient-kpi: linear-gradient(135deg, #8B6FFF 0%, #E0A8D4 100%);
  --gradient-btn: linear-gradient(180deg, #9B76F5 0%, #C49AF0 58%, #E2BCF4 100%);
  --gradient-soft: linear-gradient(180deg, rgba(155, 118, 245, 0.14) 0%, rgba(226, 188, 244, 0.14) 100%);
  --on-accent: #18122B;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-glass: rgba(255, 255, 255, 0.78);
  --header-scrolled: rgba(255, 255, 255, 0.9);
  --card-bg: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 100%);
  --card-bg-muted: linear-gradient(180deg, rgba(139,111,255,0.08) 0%, rgba(255,255,255,0.95) 100%);
  --cta-bg: linear-gradient(180deg, #E0D0FA 0%, #EDDDFB 52%, #F8F0FE 100%);
  --cta-border: rgba(155, 118, 245, 0.22);
  --method-bg: linear-gradient(180deg, #9B76F5 0%, #B88AF2 52%, #E2BCF4 100%);
  --method-surface-clip: polygon(0 5.5vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  --footer-surface-clip: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
  --shadow-soft: 0 12px 40px -12px rgba(100, 80, 160, 0.14);
  --mobile-slow: 1;
  --shadow-card: 0 8px 32px -10px rgba(80, 60, 140, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv01';
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

body::after {
  content: '';
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(139,111,255,0.14), transparent 60%),
    radial-gradient(50% 40% at 90% 20%, rgba(224,168,212,0.12), transparent 65%),
    radial-gradient(40% 35% at 50% 100%, rgba(157,127,255,0.1), transparent 70%);
}

::selection { background: rgba(139,111,255,0.28); color: var(--text); }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4 {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(184,164,255,0.28);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grad-1);
  background: rgba(184,164,255,0.06);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
}

.section-head h2 .h2-line {
  display: block;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  padding: 12px 0;
  background: var(--header-scrolled);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(139,111,255,0.12);
  box-shadow: 0 4px 24px -8px rgba(80, 60, 140, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: calc(48px * 1.3);
  transition: opacity 0.3s var(--ease);
}
.logo:hover { opacity: 0.85; }
.logo img { height: 100%; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links a {
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gradient);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-family: 'Geist', sans-serif;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
  isolation: isolate;
  will-change: transform;
}
.btn-primary {
  color: #fff;
  background: var(--gradient-btn);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.28),
    0 6px 24px -8px rgba(155, 118, 245, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-btn);
  filter: blur(18px);
  opacity: 0.28;
  z-index: -1;
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease);
}
.btn-primary:hover::before { opacity: 0.45; filter: blur(22px); }
.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.38),
    0 10px 32px -8px rgba(155, 118, 245, 0.52),
    inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid rgba(139,111,255,0.22);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.btn-secondary:hover {
  background: var(--card-bg-muted);
  border-color: rgba(139,111,255,0.38);
  transform: translateY(-1px);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* EMAIL REVEAL */
.cta-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.email-reveal {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0 16px;
  border-radius: 100px;
  background: var(--surface);
  border: none;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  transition: max-height 0.58s var(--ease), opacity 0.46s var(--ease), padding 0.46s var(--ease), gap 0.46s var(--ease);
  width: 100%;
  box-sizing: border-box;
}
.email-reveal.show {
  max-height: 148px;
  opacity: 1;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 10px;
  border-width: 0;
}
.contact-reveal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.email-reveal .label {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.email-reveal a.email,
.email-reveal a.phone {
  color: var(--text);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.email-copy,
.phone-copy {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(139,111,255,0.08);
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  position: relative;
}
.email-copy:hover,
.phone-copy:hover {
  background: rgba(139,111,255,0.16);
  color: var(--text);
  border-color: rgba(139,111,255,0.35);
}
.email-copy svg,
.phone-copy svg { width: 14px; height: 14px; }
.email-copy.copied,
.phone-copy.copied {
  background: var(--gradient);
  color: var(--on-accent);
  border-color: transparent;
}
.copy-toast {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-dark);
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 540px) {
  .email-reveal { padding-left: 14px; padding-right: 14px; font-size: 13.5px; }
  .contact-reveal-row { gap: 8px; }
  .email-reveal .label { display: none; }
  .email-reveal a.phone { font-size: 13px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  width: 1100px; height: 1100px;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle at 30% 30%, rgba(184,164,255,0.55) 0%, rgba(232,184,224,0.30) 30%, transparent 60%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  animation: orbFloat calc(20.7s * var(--mobile-slow)) ease-in-out infinite;
  pointer-events: none;
  opacity: 0.55;
}
.hero-orb-2 {
  position: absolute;
  top: 20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(157,127,255,0.35) 0%, transparent 60%);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 0;
  animation: orbFloat2 calc(25.3s * var(--mobile-slow)) ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -55%) scale(1); }
  50% { transform: translate(-48%, -52%) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.12); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(48px, 9.5vw, 124px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 12px;
  position: relative;
  overflow: visible;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line.line-morph {
  overflow: visible;
  position: relative;
  z-index: 2;
  font-size: 0.78em;
  line-height: 1.12;
  margin-top: 0.04em;
  padding: 0 0 0.1em;
  text-align: center;
}
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: riseUp 1.15s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) {
  font-size: 0.82em;
}
.hero h1 .line:nth-child(1) > span {
  animation-delay: 0.115s;
  color: #524c67;
}
.hero h1 .line.line-morph > span { animation-delay: 0.253s; }
@keyframes riseUp { to { transform: translateY(0); } }

/* morphing headline */
.morph {
  display: inline-block;
  overflow: visible;
  vertical-align: baseline;
  text-align: center;
}
.morph-track {
  position: relative;
  display: inline-block;
  overflow: visible;
  line-height: 1.12;
  padding: 0 0 0.06em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity calc(0.46s * var(--mobile-slow)) cubic-bezier(0.33, 1, 0.68, 1), transform calc(0.46s * var(--mobile-slow)) cubic-bezier(0.33, 1, 0.68, 1);
}
.morph-track.is-fading {
  opacity: 0;
  transform: translateY(0.12em);
}

/* Hero matrix grid – faldende kolonner med ikoner (Matrix-stil) */
.hero-matrix {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 14px;
  --matrix-cell: 72px;
  background-image:
    linear-gradient(rgba(82, 76, 103, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 76, 103, 0.07) 1px, transparent 1px);
  background-size: var(--matrix-cell) var(--matrix-cell);
  mask-image: radial-gradient(ellipse 78% 68% at 50% 40%, black 12%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 40%, black 12%, transparent 74%);
}
.hero-matrix-col {
  flex: 0 0 var(--matrix-cell, 72px);
  height: 100%;
  overflow: hidden;
}
.hero-matrix-track {
  display: flex;
  flex-direction: column;
  animation: heroMatrixFall calc(var(--matrix-dur, 19.32s) * var(--mobile-slow)) linear infinite;
  animation-delay: var(--matrix-delay, 0s);
  will-change: transform;
}
.hero-matrix.is-static .hero-matrix-track {
  animation: none;
}
@keyframes heroMatrixFall {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.hero-matrix-strip {
  flex: 0 0 auto;
}
.hero-matrix-cell {
  height: var(--matrix-cell, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grad-1);
  user-select: none;
}
.hero-matrix-cell.is-icon svg {
  width: 16px;
  height: 16px;
  opacity: 0.42;
  filter: drop-shadow(0 0 6px rgba(139, 111, 255, 0.35));
}
.hero-matrix-cell.is-icon svg[data-platform="chatgpt"] {
  width: 18px;
  height: 18px;
  opacity: 0.52;
}
.hero-matrix-cell.is-icon:nth-child(8n) svg {
  opacity: 0.58;
}
.hero p.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: #524c67;
  max-width: 600px;
  margin: 0 auto 42px;
  line-height: 1.55;
  opacity: 0;
  animation: fadeIn 1.15s var(--ease) 0.69s forwards;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeIn 1.15s var(--ease) 0.92s forwards;
}
.hero-ctas > .cta-group {
  align-items: center;
  width: 100%;
}
.hero-ctas > .cta-group > .btn.cta-reveal {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 6px 24px -8px rgba(155, 118, 245, 0.42);
}
.hero-ctas > .cta-group > .btn.cta-reveal:hover {
  box-shadow: 0 10px 32px -8px rgba(155, 118, 245, 0.52);
}
.hero-ctas .email-reveal {
  border: none;
}
.hero-ctas .email-reveal.show {
  border-width: 0;
}
@keyframes fadeIn { to { opacity: 1; } }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }

/* SECTIONS */
section { position: relative; }
.section-pad { padding: 120px 0; position: relative; background: transparent; }
.section-pad > .container,
.final-cta > .container,
.belt > .container {
  position: relative;
  z-index: 2;
}

/* Blød fade mellem sektioner – ingen hårde cuts */
.hero::after,
.sub-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(120px, 22vh, 280px);
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}
#services.section-pad::before,
.analysis-section::before,
.sub-content.section-pad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.22;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.2) 18%,
    black 38%,
    black 62%,
    rgba(0,0,0,0.2) 82%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.2) 18%,
    black 38%,
    black 62%,
    rgba(0,0,0,0.2) 82%,
    transparent 100%
  );
}
#faq.section-pad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.14;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.15) 16%,
    black 34%,
    black 66%,
    rgba(0,0,0,0.15) 84%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.15) 16%,
    black 34%,
    black 66%,
    rgba(0,0,0,0.15) 84%,
    transparent 100%
  );
}
@media (max-width: 720px) { .section-pad { padding: 80px 0; } }

.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(34px, 5.5vw, 64px);
  margin: 10px 0 8px;
  letter-spacing: -0.035em;
}
.section-head p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
  color: #524c67;
}
.sub-hero-inner .sub-lead,
.sub-article .sub-lead {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.method .section-head p {
  background: none;
  -webkit-text-fill-color: unset;
  color: rgba(255, 255, 255, 0.78);
}

/* Svag overlap mod metode – entré sker i den lilla bånd */
#services.section-pad {
  padding-bottom: calc(96px + clamp(32px, 6vw, 64px));
  position: relative;
  z-index: 1;
  background: transparent;
}
.method.section-pad {
  margin-top: -clamp(32px, 6vw, 64px);
  padding: 0;
  overflow: visible;
  z-index: 2;
  background: transparent;
}
.method-surface {
  position: relative;
  isolation: isolate;
  padding: calc(96px + clamp(32px, 6vw, 64px)) 0 calc(100px + clamp(40px, 8vw, 80px));
}
.method-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--method-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform-origin: bottom center;
  z-index: 0;
  pointer-events: none;
}
.method-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform-origin: bottom center;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.method.method-visible .method-surface::before,
.method.method-visible .method-surface::after {
  clip-path: var(--method-surface-clip);
  transition: clip-path 1.05s var(--ease);
}
.method.method-visible .method-surface::before {
  transition-duration: 1.05s;
}
.method.method-visible .method-surface::after {
  transition-duration: 1.15s;
  transition-delay: 0.06s;
}
.method-surface > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  #services.section-pad {
    padding-bottom: calc(72px + clamp(24px, 5vw, 48px));
  }
  .method.section-pad {
    margin-top: -clamp(24px, 5vw, 48px);
  }
  .method-surface {
    padding: calc(72px + clamp(24px, 5vw, 48px)) 0 calc(72px + clamp(32px, 6vw, 56px));
  }
  :root {
    --method-surface-clip: polygon(0 7vw, 100% 0, 100% calc(100% - 5vw), 0 100%);
  }
}
.method .section-head {
  margin-bottom: 56px;
}
.method .section-head h2 {
  margin: 8px 0 6px;
  color: #fff;
  font-size: clamp(38px, 6.2vw, 72px);
}
.method-highlight {
  color: #F8F0FF;
}
.method .section-head p {
  color: rgba(255, 255, 255, 0.78);
}
.method .eyebrow {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}
.method-head-entrance.in h2 {
  animation: methodHeadEntrance 0.95s var(--ease) 0.42s both;
}
.method-head-entrance.in p {
  animation: methodHeadEntrance 0.9s var(--ease) 0.58s both;
}
@keyframes methodHeadEntrance {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* METHOD GRID (forside) */
.method-wrap {
  position: relative;
}
.method-line {
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), rgba(255,255,255,0.35), transparent);
  opacity: 0.7;
  z-index: 0;
}
@media (max-width: 920px) { .method-line { display: none; } }
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.method-step { text-align: left; padding: 0 8px; }
.method-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
  isolation: isolate;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 10px 28px -12px rgba(40, 24, 80, 0.35);
}
.method-step:hover .method-num {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 36px -10px rgba(40, 24, 80, 0.42);
}
.method-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  opacity: 0;
  filter: blur(10px);
  z-index: -1;
  transition: opacity 0.4s var(--ease);
}
.method-step:hover .method-num::before { opacity: 0.65; }
.method-num span {
  background: linear-gradient(180deg, #9B76F5 0%, #E2BCF4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.method-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: #fff;
}
.method-step p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 920px) {
  .method-grid { grid-template-columns: 1fr; gap: 36px; }
  .method-step {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }
}

/* BELT */
.belt {
  padding: 60px 0;
  position: relative;
}
.belt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.28;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.15) 20%,
    black 40%,
    black 60%,
    rgba(0,0,0,0.15) 80%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.15) 20%,
    black 40%,
    black 60%,
    rgba(0,0,0,0.15) 80%,
    transparent 100%
  );
}
.belt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(100px, 14vw, 180px);
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.belt-specialists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 56px;
  font-weight: 500;
}
.belt-specialists span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.belt-specialists span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-1);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.kpi {
  text-align: center;
  padding: 20px 16px;
  border-left: 1px solid var(--line);
}
.kpi:first-child { border-left: none; }
.kpi-num {
  font-family: 'Geist', sans-serif;
  font-size: clamp(46px, 6.5vw, 88px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-kpi);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.kpi-label {
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media (max-width: 820px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .kpi { border-left: none; padding: 12px; }
  .kpi:nth-child(odd) { border-right: 1px solid var(--line); }
  .belt-specialists { gap: 24px; font-size: 11.5px; }
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 38px 34px 34px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  isolation: isolate;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, rgba(184,164,255,0) 50%, rgba(184,164,255,0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: background 0.5s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.service-card::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184,164,255,0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,111,255,0.32);
  background: var(--card-bg-muted);
  box-shadow: var(--shadow-soft);
}
.service-card:hover::before {
  background: linear-gradient(135deg, rgba(184,164,255,0.5) 0%, rgba(232,184,224,0.2) 50%, transparent 100%);
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 2; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(184,164,255,0.10);
  border: 1px solid rgba(184,164,255,0.20);
  margin-bottom: 26px;
  color: var(--grad-1);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.service-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-num {
  position: absolute;
  top: 26px; right: 30px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  z-index: 2;
}
@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* METHOD TIMELINE */
.method-panel {
  border: 1px solid rgba(139,111,255,0.18);
  border-radius: calc(var(--radius) + 6px);
  background: var(--card-bg-muted);
  padding: 56px 48px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.method-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 820px;
  margin: 0 auto;
}
.method-timeline-rail {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(184,164,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.method-timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gradient);
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(184,164,255,0.45);
}
.method-timeline-step {
  position: relative;
  width: calc(50% - 40px);
}
.method-timeline-step--left { align-self: flex-start; padding-right: 24px; }
.method-timeline-step--right { align-self: flex-end; padding-left: 24px; }
.method-step-card {
  padding: 28px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.method-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,164,255,0.35);
  box-shadow: 0 8px 32px -8px rgba(184,164,255,0.2);
}
.method-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(184,164,255,0.35);
  background: rgba(184,164,255,0.08);
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}
.method-step-badge span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.method-deliverable {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grad-1);
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(184,164,255,0.25);
  background: rgba(184,164,255,0.08);
}
.method-step-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.method-step-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .method-panel { padding: 36px 24px; }
  .method-timeline-rail { left: 20px; transform: none; }
  .method-timeline-step,
  .method-timeline-step--left,
  .method-timeline-step--right {
    width: 100%;
    align-self: stretch;
    padding-left: 52px;
    padding-right: 0;
  }
}

/* WHY BENTO */
.why-bento-wrap {
  position: relative;
  padding: 8px 0;
}
.why-bento-wrap::before {
  content: '';
  position: absolute;
  inset: -40px -20px;
  background: var(--gradient-soft);
  transform: skewY(-2deg);
  border-radius: var(--radius);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.why-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-bento-hero {
  grid-column: 1 / -1;
  padding: 44px 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(139,111,255,0.2);
  background: var(--card-bg-muted);
  box-shadow: var(--shadow-card);
}
.why-bento-hero blockquote {
  font-family: 'Geist', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-bento-hero p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
  line-height: 1.55;
}
.why-bento-card {
  padding: 32px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,111,255,0.28);
  box-shadow: var(--shadow-soft);
}
.why-bento-card--wide { grid-column: span 1; }
.why-stat {
  font-family: 'Geist', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-stat--text { font-size: clamp(28px, 4vw, 40px); }
.why-bento-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.why-bento-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-bento { grid-template-columns: 1fr 1fr; }
  .why-bento-hero { grid-column: 1 / -1; padding: 32px 28px; }
  .why-bento-card--wide { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .why-bento { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--grad-1); }
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  position: relative;
  transition: all 0.4s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle {
  background: var(--gradient);
  border-color: transparent;
}
.faq-item.open .faq-toggle::before { background: var(--on-accent); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); background: var(--on-accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner {
  padding: 0 0 28px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
}

/* GRATIS ANALYSE FORM */
.analysis-section {
  margin-top: -clamp(56px, 10vw, 130px);
  padding-top: calc(80px + clamp(56px, 10vw, 130px));
  padding-bottom: clamp(48px, 5vw, 64px);
  position: relative;
  z-index: 1;
  background: transparent;
}
@media (max-width: 720px) {
  .analysis-section {
    margin-top: -clamp(40px, 8vw, 72px);
    padding-top: calc(64px + clamp(40px, 8vw, 72px));
    padding-bottom: 44px;
  }
}
#faq.section-pad {
  padding-top: clamp(72px, 10vw, 96px);
  padding-bottom: calc(48px + clamp(28px, 5vw, 56px));
}
.analysis-section .section-head p {
  max-width: 640px;
}
.analysis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.analysis-form {
  position: relative;
  padding: 36px 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Geist', 'Inter', sans-serif;
}
.analysis-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.analysis-field label,
.analysis-kanaler legend {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.analysis-field input,
.analysis-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.9);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.analysis-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
.analysis-field input::placeholder,
.analysis-field textarea::placeholder {
  color: var(--text-dim);
}
.analysis-field input:focus,
.analysis-field textarea:focus {
  outline: none;
  border-color: rgba(184,164,255,0.55);
  box-shadow: 0 0 0 3px rgba(184,164,255,0.15);
}
.analysis-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.analysis-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.analysis-kanaler {
  margin: 0;
  padding: 0;
  border: none;
}
.analysis-kanaler legend {
  margin-bottom: 12px;
  padding: 0;
}
.analysis-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.analysis-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.4;
  cursor: pointer;
  font-weight: 400;
}
.analysis-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--grad-1);
  cursor: pointer;
  flex-shrink: 0;
}
.analysis-check span { color: var(--text); }
.analysis-check-hint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
}
.analysis-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 16px 24px !important;
  font-size: 16px !important;
}
.analysis-microcopy {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
  margin: 0 -4px;
}

/* Analysis phone mockup */
.analysis-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
  width: min(100%, 280px);
  padding: 14px 12px 18px;
  border-radius: 36px;
  border: 2px solid rgba(139,111,255,0.28);
  background: linear-gradient(180deg, rgba(139,111,255,0.1) 0%, rgba(24,18,40,0.92) 100%);
  box-shadow:
    0 0 0 1px rgba(139,111,255,0.08),
    0 24px 60px -16px rgba(100, 80, 160, 0.25);
}
.phone-notch {
  width: 80px;
  height: 22px;
  margin: 0 auto 12px;
  border-radius: 0 0 14px 14px;
  background: rgba(0,0,0,0.55);
}
.phone-screen {
  border-radius: 24px;
  background: #14101F;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 18px 22px;
  overflow: hidden;
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: #F5F2FC;
}
.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 8px rgba(184,164,255,0.5);
}
.dash-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.dash-badges span {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(184,164,255,0.25);
  color: var(--grad-1);
  background: rgba(184,164,255,0.08);
}
.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.dash-metric {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}
.dash-metric--highlight {
  grid-column: 1 / -1;
  border-color: rgba(184,164,255,0.3);
  background: rgba(184,164,255,0.06);
}
.dash-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 242, 252, 0.55);
  margin-bottom: 4px;
}
.dash-value {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.dash-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--grad-1), var(--grad-2));
  opacity: 0.7;
  transform-origin: bottom;
  transform: scaleY(0);
}
.analysis-layout.in .dash-bar {
  animation: dashBarGrow calc(1.2s * var(--mobile-slow)) var(--ease) forwards;
}
.dash-bar:nth-child(1) { animation-delay: calc(0.1s * var(--mobile-slow)); }
.dash-bar:nth-child(2) { animation-delay: calc(0.2s * var(--mobile-slow)); }
.dash-bar:nth-child(3) { animation-delay: calc(0.3s * var(--mobile-slow)); }
.dash-bar:nth-child(4) { animation-delay: calc(0.4s * var(--mobile-slow)); }
.dash-bar:nth-child(5) { animation-delay: calc(0.5s * var(--mobile-slow)); }
@keyframes dashBarGrow {
  to { transform: scaleY(1); }
}

@media (max-width: 960px) {
  .analysis-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .analysis-form {
    order: 1;
  }
  .analysis-visual {
    order: 2;
  }
  .phone-mockup { width: min(100%, 260px); }
}
@media (max-width: 640px) {
  .analysis-form { padding: 26px 22px 24px; }
  .analysis-row,
  .analysis-check-grid,
  .analysis-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-mobile: 76px;
    --mobile-slow: 2.25;
  }
  .header {
    padding: 10px 0;
  }
  .header .logo {
    height: calc(40px * 1.2);
  }
  .header .btn-primary {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: calc(var(--header-mobile) + 10px);
    padding-bottom: 18px;
    box-sizing: border-box;
    align-items: center;
  }
  .hero .container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    width: 100%;
  }
  .hero-content {
    width: 100%;
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(58px, 13.5vw, 80px);
    margin-bottom: 8px;
    line-height: 1.06;
  }
  .hero h1 .line.line-morph {
    font-size: 0.78em;
    margin-top: 0.02em;
    display: block;
    width: 100%;
    text-align: center;
  }
  .hero h1 .line.line-morph > span {
    display: block;
    width: 100%;
    text-align: center;
  }
  .hero h1 .line.line-morph .morph {
    display: block;
    width: 100%;
    min-width: 0 !important;
    text-align: center;
  }
  .hero h1 .line.line-morph .morph-track {
    display: inline-block;
    text-align: center;
  }
  .hero p.lead {
    font-size: clamp(20px, 4.8vw, 26px);
    margin-bottom: 22px;
    line-height: 1.48;
    max-width: none;
  }
  .hero-ctas {
    max-width: 100%;
    gap: 12px;
  }
}

/* FINAL CTA */
.final-cta {
  position: relative;
  padding: 0;
  margin-top: 0;
  background: transparent;
  z-index: 2;
  overflow: visible;
}
.final-cta-surface {
  position: relative;
  isolation: isolate;
  padding: clamp(16px, 2.5vw, 24px) 0 clamp(40px, 6vw, 56px);
}
.final-cta > .container,
.final-cta-surface > .container {
  position: relative;
  z-index: 1;
}
.final-cta-card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 40px) clamp(24px, 4vw, 40px);
  border-radius: calc(var(--radius) + 6px);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(155, 118, 245, 0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.35) 100%),
    var(--cta-bg);
  box-shadow:
    0 24px 56px -28px rgba(155, 118, 245, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(155, 118, 245, 0.45) 0%, rgba(226, 188, 244, 0.2) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.final-cta-glow {
  position: absolute;
  top: -55%;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 90%);
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(155, 118, 245, 0.32) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.final-cta-inner .eyebrow {
  margin-bottom: 10px;
  font-size: 11.5px;
  padding: 6px 12px;
}
.final-cta-inner h2 {
  font-size: clamp(30px, 4.8vw, 48px);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.02;
  max-width: 28ch;
}
.final-cta-inner p {
  color: #524c67;
  font-size: clamp(14px, 1.65vw, 16px);
  line-height: 1.5;
  max-width: 38ch;
  margin: 0 auto 20px;
}
.final-cta-btn {
  font-size: 15px;
  padding: 16px 28px;
  min-width: min(100%, 280px);
}

@media (min-width: 821px) {
  .final-cta-surface {
    padding: clamp(52px, 6.5vw, 76px) 0 clamp(56px, 7vw, 80px);
  }
  .final-cta-surface::before {
    content: '';
    position: absolute;
    top: -18%;
    bottom: -18%;
    left: 0;
    right: 0;
    background:
      radial-gradient(ellipse 88% 58% at 50% 44%, rgba(196, 168, 245, 0.26) 0%, transparent 68%),
      linear-gradient(
        180deg,
        transparent 0%,
        rgba(232, 220, 252, 0.32) 20%,
        rgba(226, 188, 244, 0.18) 50%,
        rgba(232, 220, 252, 0.26) 80%,
        transparent 100%
      );
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.1s var(--ease);
  }
  .final-cta-surface::after {
    content: '';
    position: absolute;
    top: -12%;
    bottom: -12%;
    left: 0;
    right: 0;
    background-image:
      linear-gradient(rgba(155, 118, 245, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(155, 118, 245, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 78%, transparent 100%);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 1.15s var(--ease) 0.1s;
  }
  .final-cta.final-cta-visible .final-cta-surface::before {
    opacity: 1;
  }
  .final-cta.final-cta-visible .final-cta-surface::after {
    opacity: 0.48;
  }
  .final-cta-card {
    max-width: 860px;
    padding: clamp(36px, 4.5vw, 48px) clamp(44px, 5.5vw, 64px);
    border-radius: calc(var(--radius) + 6px);
    box-shadow:
      0 32px 72px -36px rgba(155, 118, 245, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  }
  .final-cta-glow {
    top: -50%;
    width: min(640px, 92%);
    height: 240px;
    background: radial-gradient(ellipse at center, rgba(155, 118, 245, 0.28) 0%, transparent 65%);
  }
  .final-cta-inner .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .final-cta-inner h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 10px;
    max-width: none;
    letter-spacing: -0.042em;
  }
  .final-cta-inner p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 44ch;
    margin-bottom: 22px;
  }
  .final-cta-btn {
    font-size: 15px;
    padding: 16px 30px;
    min-width: 280px;
  }
  .final-cta.final-cta-visible .final-cta-inner h2 {
    animation: finalCtaHeadEntrance 0.9s var(--ease) 0.38s both;
  }
  .final-cta.final-cta-visible .final-cta-inner p {
    animation: finalCtaHeadEntrance 0.85s var(--ease) 0.5s both;
  }
  .final-cta.final-cta-visible .final-cta-btn {
    animation: finalCtaHeadEntrance 0.85s var(--ease) 0.62s both;
  }
}
@keyframes finalCtaHeadEntrance {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .final-cta-surface {
    padding: 14px 0 36px;
  }
  .final-cta-card {
    padding: 26px 22px 24px;
    border-radius: var(--radius);
  }
  .final-cta-inner h2 {
    font-size: clamp(26px, 6.8vw, 34px);
    margin-bottom: 8px;
  }
  .final-cta-inner p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .final-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 22px;
  }
}

/* FOOTER */
.footer {
  margin-top: -clamp(28px, 5vw, 56px);
  padding: 0;
  position: relative;
  z-index: 2;
  background: transparent;
  overflow: visible;
}
.footer-surface {
  position: relative;
  isolation: isolate;
  padding: calc(clamp(56px, 8vw, 80px) + clamp(28px, 5vw, 56px)) 0 clamp(48px, 6vw, 72px);
}
.footer-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--method-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform-origin: bottom center;
  z-index: 0;
  pointer-events: none;
}
.footer-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform-origin: bottom center;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.footer.footer-visible .footer-surface::before,
.footer.footer-visible .footer-surface::after {
  clip-path: var(--footer-surface-clip);
  transition: clip-path 1.05s var(--ease);
}
.footer.footer-visible .footer-surface::before {
  transition-duration: 1.05s;
}
.footer.footer-visible .footer-surface::after {
  transition-duration: 1.15s;
  transition-delay: 0.06s;
}
.footer-surface > .container {
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 0.7fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  margin-bottom: 18px;
}
.footer-wordmark-name {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.footer-wordmark-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.02em;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 18px;
}
.footer-contact-list,
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-contact-link:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.footer-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.footer-link-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 2px;
}
.footer-link-text {
  font-size: 14px;
  line-height: 1.45;
}
.footer-nav-list a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-block;
}
.footer-nav-list a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
}
.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .footer-surface {
    padding: calc(48px + clamp(24px, 5vw, 48px)) 0 44px;
  }
  :root {
    --footer-surface-clip: polygon(0 6.5vw, 100% 0, 100% 100%, 0 100%);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-tagline {
    max-width: none;
  }
}

* { scrollbar-color: rgba(100, 80, 160, 0.2) transparent; }

/* Undersider + tekstlogo */
.logo-text {
  font-family: Geist, Inter, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.logo.logo-with-text { height: auto; min-height: calc(48px * 1.3); }
.header .logo-with-text .logo-text { font-size: calc(1.4rem * 1.3); }
.nav-links .nav-current { color: var(--text); }
.nav-links .nav-current::after { width: 100%; }

.sub-page-main {
  position: relative;
  z-index: 2;
  padding: 110px 0 100px;
  min-height: 65vh;
}
.sub-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px 7px 8px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  background: rgba(184,164,255,0.04);
  border: 1px solid rgba(184,164,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.sub-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(184,164,255,0.28);
  background: rgba(184,164,255,0.08);
  color: var(--grad-1);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.sub-back:hover {
  color: var(--text);
  border-color: rgba(139,111,255,0.4);
  background: rgba(139,111,255,0.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -10px rgba(139,111,255,0.25);
}
.sub-back:hover .sub-back-icon {
  transform: translateX(-3px);
  border-color: rgba(184,164,255,0.5);
  background: rgba(184,164,255,0.14);
}

.sub-hero {
  position: relative;
  min-height: max(380px, 48vh);
  display: flex;
  align-items: center;
  padding: 128px 0 72px;
  overflow: hidden;
  z-index: 1;
}
.sub-hero > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sub-hero .hero-orb,
.sub-hero .hero-orb-2 {
  opacity: 0.65;
}
.sub-hero .hero-orb {
  top: 20%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
}
.sub-hero .sub-back {
  position: absolute;
  top: 104px;
  left: 32px;
  z-index: 3;
  margin: 0;
}
@media (min-width: 1304px) {
  .sub-hero .sub-back {
    left: calc((100% - 1240px) / 2 + 32px);
  }
}
.sub-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.sub-hero-inner .eyebrow {
  display: inline-flex;
  margin-bottom: 0;
}
.sub-hero-inner h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  margin: 10px 0 8px;
  letter-spacing: -0.035em;
  font-weight: 600;
  line-height: 1.05;
}
.sub-hero-inner h1 .h2-line {
  display: block;
}
.sub-hero-inner .sub-lead {
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

.sub-hero + .sub-content.section-pad {
  margin-top: -clamp(32px, 6vw, 72px);
  padding-top: calc(80px + clamp(32px, 6vw, 72px));
}
.sub-content {
  position: relative;
  z-index: 2;
}
.sub-content.section-pad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.3;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.45) 14%,
    black 28%,
    black 72%,
    rgba(0,0,0,0.45) 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.45) 14%,
    black 28%,
    black 72%,
    rgba(0,0,0,0.45) 86%,
    transparent 100%
  );
}
.sub-content > .container {
  position: relative;
  z-index: 1;
}
.sub-content > .container > .sub-panel {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.sub-content > .container > .sub-panel:not(:first-child) {
  margin-top: 24px;
}
.sub-content > .container > .method-panel + .sub-panel {
  margin-top: 32px;
}
.sub-content > .container > .why-bento-wrap + .sub-panel {
  margin-top: 32px;
}
.sub-content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.sub-panel {
  padding: 32px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(139,111,255,0.16);
  background: var(--card-bg-muted);
  box-shadow: var(--shadow-card);
}
.sub-panel h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  color: var(--text);
  font-weight: 600;
  line-height: 1.15;
}
.sub-panel p {
  margin-bottom: 1em;
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 16px;
}
.sub-panel p:last-child { margin-bottom: 0; }
.sub-panel ul {
  margin: 0.75em 0 1em 1.25em;
  color: var(--text-muted);
  line-height: 1.68;
  font-size: 15px;
}
.sub-panel li { margin-bottom: 0.45em; }

.sub-content.section-pad {
  padding-bottom: 100px;
}
.sub-content .method-panel {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.sub-cta-band {
  position: relative;
  z-index: 2;
  margin-top: -clamp(28px, 5vw, 56px);
}
.sub-cta-band.section-pad {
  padding: calc(72px + clamp(28px, 5vw, 56px)) 0 calc(48px + clamp(28px, 5vw, 56px));
}
.sub-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.45) 14%,
    black 28%,
    black 72%,
    rgba(0,0,0,0.45) 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.45) 14%,
    black 28%,
    black 72%,
    rgba(0,0,0,0.45) 86%,
    transparent 100%
  );
}
.sub-content.section-pad {
  padding-bottom: calc(120px + clamp(28px, 5vw, 56px));
}
.sub-cta-band > .container {
  position: relative;
  z-index: 1;
}
.sub-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--cta-border);
  background: var(--cta-bg);
  box-shadow: 0 8px 28px -12px rgba(155, 118, 245, 0.14);
}
.sub-cta-text {
  text-align: left;
  flex: 1;
  min-width: 0;
}
.sub-cta-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.035em;
  margin: 10px 0 6px;
  font-weight: 600;
  line-height: 1.05;
}
.sub-cta-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 480px;
}
.sub-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.sub-cta-mail {
  font-size: 14px;
  color: var(--grad-1);
  font-weight: 500;
  transition: opacity 0.3s var(--ease);
}
.sub-cta-mail:hover { opacity: 0.75; }

@media (max-width: 720px) {
  .sub-hero {
    min-height: auto;
    padding: 108px 0 48px;
  }
  .sub-hero .sub-back {
    top: 92px;
    left: 22px;
  }
  .sub-hero + .sub-content.section-pad {
    margin-top: -clamp(24px, 5vw, 48px);
    padding-top: calc(56px + clamp(24px, 5vw, 48px));
  }
  .sub-content.section-pad {
    padding-bottom: calc(72px + clamp(20px, 4vw, 40px));
  }
  .sub-cta-band {
    margin-top: -clamp(20px, 4vw, 40px);
  }
  .sub-cta-band.section-pad {
    padding: calc(56px + clamp(20px, 4vw, 40px)) 0 72px;
  }
  .sub-panel { padding: 24px 22px; }
  .sub-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .sub-cta-actions {
    align-items: stretch;
    width: 100%;
  }
  .sub-cta-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .sub-cta-mail { text-align: center; }
}
.sub-article h1 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}
.sub-article .sub-lead {
  font-size: 1.12rem;
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 52ch;
}
.sub-article h2 {
  font-size: 1.28rem;
  margin: 40px 0 14px;
  color: var(--text);
}
.sub-article p {
  margin-bottom: 1.05em;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 62ch;
}
.sub-article ul {
  margin: 1em 0 1.2em 1.25em;
  color: var(--text-muted);
  line-height: 1.68;
}
.sub-article li { margin-bottom: 0.5em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-orb, .hero-orb-2 { animation: none !important; }
  .hero-matrix-track { animation: none !important; }
  .method-surface::before,
  .method-surface::after {
    clip-path: var(--method-surface-clip);
    transition: none !important;
  }
  .footer-surface::before,
  .footer-surface::after {
    clip-path: var(--footer-surface-clip);
    transition: none !important;
  }
  .method-head-entrance.in h2,
  .method-head-entrance.in p { animation: none !important; }
  .final-cta-surface::before,
  .final-cta-surface::after {
    opacity: 1;
    transition: none !important;
  }
  .final-cta.final-cta-visible .final-cta-inner h2,
  .final-cta.final-cta-visible .final-cta-inner p,
  .final-cta.final-cta-visible .final-cta-btn { animation: none !important; }
  .sub-hero .hero-orb, .sub-hero .hero-orb-2 { animation: none !important; }
  .reveal, .reveal-stagger > *, .dash-bar { transition: none !important; animation: none !important; }
  .hero h1 .line > span { animation: none; transform: none; opacity: 1; }
  .hero p.lead, .hero-ctas { animation: none; opacity: 1; }
}
